| 1 | // -*- c++ -*- | 
|---|
| 2 | #ifndef FOR_EACH_MACROS_H | 
|---|
| 3 | #define FOR_EACH_MACROS_H | 
|---|
| 4 |  | 
|---|
| 5 | // /// \ingroup gwrappers | 
|---|
| 6 | /// \file | 
|---|
| 7 | /// \brief Iteration macros. | 
|---|
| 8 | /// | 
|---|
| 9 | /// This file contains several macros which make easier writting | 
|---|
| 10 | /// for cycles in HUGO using HUGO iterators. | 
|---|
| 11 | /// | 
|---|
| 12 | /// \author Marton Makai | 
|---|
| 13 |  | 
|---|
| 14 | namespace hugo { | 
|---|
| 15 |  | 
|---|
| 16 | /// This macro provides a comfortable interface for iterating with HUGO | 
|---|
| 17 | /// iterators. | 
|---|
| 18 | /// \code | 
|---|
| 19 | /// Graph g; | 
|---|
| 20 | /// ... | 
|---|
| 21 | /// Graph::NodeIt n; | 
|---|
| 22 | /// FOR_EACH_GLOB(n, g) { | 
|---|
| 23 | /// ... | 
|---|
| 24 | /// } | 
|---|
| 25 | /// Graph::EdgeIt e; | 
|---|
| 26 | /// FOR_EACH_GLOB(e, g) { | 
|---|
| 27 | /// ... | 
|---|
| 28 | /// } | 
|---|
| 29 | /// \endcode | 
|---|
| 30 | /// Note that the iterated variables \c n and \c e are global ones. | 
|---|
| 31 | #define FOR_EACH_GLOB(e, g) for((g).first((e)); (g).valid((e)); (g).next((e))) | 
|---|
| 32 |  | 
|---|
| 33 | /// This macro provides a comfortable interface for iterating with HUGO | 
|---|
| 34 | /// iterators. | 
|---|
| 35 | /// \code | 
|---|
| 36 | /// Graph g; | 
|---|
| 37 | /// ... | 
|---|
| 38 | /// Graph::Node v; | 
|---|
| 39 | /// Graph::OutEdgeIt e; | 
|---|
| 40 | /// FOR_EACH_INC_GLOB(e, g, v) { | 
|---|
| 41 | /// ... | 
|---|
| 42 | /// } | 
|---|
| 43 | /// typedef BipartiteGraph<Graph> BGraph; | 
|---|
| 44 | /// BGraph h; | 
|---|
| 45 | /// ... | 
|---|
| 46 | /// BGraph::ClassNodeIt n; | 
|---|
| 47 | /// FOR_EACH_INC_GLOB(BGraph::ClassNodeIt, n, h, h.S_CLASS) { | 
|---|
| 48 | /// ... | 
|---|
| 49 | /// } | 
|---|
| 50 | /// \endcode | 
|---|
| 51 | /// Note that iterated variables \c e and \c n are global ones. | 
|---|
| 52 | #define FOR_EACH_INC_GLOB(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e))) | 
|---|
| 53 |  | 
|---|
| 54 | /// \deprecated | 
|---|
| 55 | //#define FOR_EACH_EDGE_GLOB(e, g) for((g).first((e)); (g).valid((e)); (g).next((e))) | 
|---|
| 56 | /// \deprecated | 
|---|
| 57 | //#define FOR_EACH_NODE_GLOB(e, g) for((g).first((e)); (g).valid((e)); (g).next((e))) | 
|---|
| 58 | /// \deprecated | 
|---|
| 59 | //#define FOR_EACH_INEDGE_GLOB(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e))) | 
|---|
| 60 | /// \deprecated | 
|---|
| 61 | //#define FOR_EACH_OUTEDGE_GLOB(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e))) | 
|---|
| 62 |  | 
|---|
| 63 | //   template<typename It, typename Graph> | 
|---|
| 64 | //   It loopFirst(const Graph& g) const { | 
|---|
| 65 | //     It e; g.first(e); return e; | 
|---|
| 66 | //   } | 
|---|
| 67 |  | 
|---|
| 68 | //   template<typename It, typename Graph> | 
|---|
| 69 | //   It loopFirst(const Graph& g, const Node& v) const { | 
|---|
| 70 | //     It e; g.first(e, v); return e; | 
|---|
| 71 | //   } | 
|---|
| 72 |  | 
|---|
| 73 | //   template<typename Graph> | 
|---|
| 74 | //   typename Graph::NodeIt loopFirstNode(const Graph& g) const { | 
|---|
| 75 | //     typename Graph::NodeIt e; g.first(e); return e; | 
|---|
| 76 | //   } | 
|---|
| 77 | //   template<typename Graph> | 
|---|
| 78 | //   typename Graph::EdgeIt loopFirstEdge(const Graph& g) const { | 
|---|
| 79 | //     typename Graph::EdgeIt e; g.first(e); return e; | 
|---|
| 80 | //   } | 
|---|
| 81 | //   template<typename Graph> | 
|---|
| 82 | //   typename Graph::OutEdgeIt | 
|---|
| 83 | //   loopFirstOutEdge(const Graph& g, const Node& n) const { | 
|---|
| 84 | //     typename Graph::OutEdgeIt e; g.first(e, n); return e; | 
|---|
| 85 | //   } | 
|---|
| 86 | //   template<typename Graph> | 
|---|
| 87 | //   typename Graph::InEdgeIt | 
|---|
| 88 | //   loopFirstIn Edge(const Graph& g, const Node& n) const { | 
|---|
| 89 | //     typename Graph::InEdgeIt e; g.first(e, n); return e; | 
|---|
| 90 | //   } | 
|---|
| 91 |  | 
|---|
| 92 | //FIXME ezt hogy a gorcsbe birja levezetni. Csak ugy leveszi a const-ot?? | 
|---|
| 93 | template<typename It, typename Graph> | 
|---|
| 94 | It loopFirst(const It&, const Graph& g) { | 
|---|
| 95 | It e; g.first(e); return e; | 
|---|
| 96 | } | 
|---|
| 97 |  | 
|---|
| 98 | template<typename It, typename Graph, typename Node> | 
|---|
| 99 | It loopFirst(const It&, const Graph& g, const Node& v) { | 
|---|
| 100 | It e; g.first(e, v); return e; | 
|---|
| 101 | } | 
|---|
| 102 |  | 
|---|
| 103 | //   template<typename Graph> | 
|---|
| 104 | //   typename Graph::NodeIt loopFirstNode(const Graph& g) const { | 
|---|
| 105 | //     typename Graph::NodeIt e; g.first(e); return e; | 
|---|
| 106 | //   } | 
|---|
| 107 | //   template<typename Graph> | 
|---|
| 108 | //   typename Graph::EdgeIt loopFirstEdge(const Graph& g) const { | 
|---|
| 109 | //     typename Graph::EdgeIt e; g.first(e); return e; | 
|---|
| 110 | //   } | 
|---|
| 111 | //   template<typename Graph> | 
|---|
| 112 | //   typename Graph::OutEdgeIt | 
|---|
| 113 | //   loopFirstOutEdge(const Graph& g, const Node& n) const { | 
|---|
| 114 | //     typename Graph::OutEdgeIt e; g.first(e, n); return e; | 
|---|
| 115 | //   } | 
|---|
| 116 | //   template<typename Graph> | 
|---|
| 117 | //   typename Graph::InEdgeIt | 
|---|
| 118 | //   loopFirstIn Edge(const Graph& g, const Node& n) const { | 
|---|
| 119 | //     typename Graph::InEdgeIt e; g.first(e, n); return e; | 
|---|
| 120 | //   } | 
|---|
| 121 |  | 
|---|
| 122 | /// This macro provides a comfortable interface for iterating with HUGO | 
|---|
| 123 | /// iterators. | 
|---|
| 124 | /// \code | 
|---|
| 125 | /// Graph g; | 
|---|
| 126 | /// ... | 
|---|
| 127 | /// FOR_EACH_LOC(Graph::NodeIt, n, g) { | 
|---|
| 128 | /// ... | 
|---|
| 129 | /// } | 
|---|
| 130 | /// FOR_EACH_LOC(Graph::EdgeIt, e, g) { | 
|---|
| 131 | /// ... | 
|---|
| 132 | /// } | 
|---|
| 133 | /// \endcode | 
|---|
| 134 | /// Note that the iterated variables \c n and \c e are local ones. | 
|---|
| 135 | #define FOR_EACH_LOC(Ittype, e, g) for(Ittype e=loopFirst(Ittype(), (g)); (g).valid(e); (g).next(e)) | 
|---|
| 136 |  | 
|---|
| 137 | /// This macro provides a comfortable interface for iterating with HUGO | 
|---|
| 138 | /// iterators. | 
|---|
| 139 | /// \code | 
|---|
| 140 | /// Graph g; | 
|---|
| 141 | /// ... | 
|---|
| 142 | /// Graph::Node v; | 
|---|
| 143 | /// FOR_EACH_INC_LOC(Graph::OutEdgeIt, e, g, v) { | 
|---|
| 144 | /// ... | 
|---|
| 145 | /// } | 
|---|
| 146 | /// typedef BipartiteGraph<Graph> BGraph; | 
|---|
| 147 | /// BGraph h; | 
|---|
| 148 | /// ... | 
|---|
| 149 | /// FOR_EACH_INC_LOC(BGraph::ClassNodeIt, n, h, h.S_CLASS) { | 
|---|
| 150 | /// ... | 
|---|
| 151 | /// } | 
|---|
| 152 | /// \endcode | 
|---|
| 153 | /// Note that the iterated variables \c e and \c n are local ones. | 
|---|
| 154 | #define FOR_EACH_INC_LOC(Ittype, e, g, v) for(Ittype e=loopFirst(Ittype(), (g), (v)); (g).valid(e); (g).next(e)) | 
|---|
| 155 |  | 
|---|
| 156 | // #define FOR_EACH_EDGE_LOC(e, g) ezt nem tom hogy kell for((g).first((e)); (g).valid((e)); (g).next((e))) | 
|---|
| 157 | // #define FOR_EACH_NODE_LOC(e, g) for((g).first((e)); (g).valid((e)); (g).next((e))) | 
|---|
| 158 | // #define FOR_EACH_INEDGE_LOC(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e))) | 
|---|
| 159 | // #define FOR_EACH_OUTEDGE_LOC(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e))) | 
|---|
| 160 |  | 
|---|
| 161 |  | 
|---|
| 162 | } //namespace hugo | 
|---|
| 163 |  | 
|---|
| 164 | #endif //FOR_EACH_MACROS_H | 
|---|