COIN-OR::LEMON - Graph Library

Changeset 409:7ab7f083760a in lemon-0.x


Ignore:
Timestamp:
04/26/04 11:54:24 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@542
Message:

stGraphWrapper is almost working

Location:
src/work
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • src/work/list_graph.h

    r389 r409  
    370370
    371371    friend std::ostream& operator<<(std::ostream& os, const Node& i) {
    372       os << i.node->id; return os;
     372      if (i.valid())
     373        os << i.node->id;
     374      else
     375        os << "invalid";
     376      return os;
    373377    }
    374378    friend std::ostream& operator<<(std::ostream& os, const Edge& i) {
    375       os << "(" << i.edge->_tail->id << "--" << i.edge->id << "->" << i.edge->_head->id << ")";
     379      if (i.valid())
     380        os << "(" << i.edge->_tail->id << "--" << i.edge->id << "->" << i.edge->_head->id << ")";
     381      else
     382        os << "invalid";
    376383      return os;
    377384    }
  • src/work/makefile

    r393 r409  
    11INCLUDEDIRS ?= -I../include -I. -I./{marci,jacint,alpar,klao,akos}
    2 CXXFLAGS = -g -O0 -W -Wall $(INCLUDEDIRS) -ansi -pedantic
     2CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic
    33
    44BINARIES ?= bin_heap_demo
     
    66# Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam
    77# ismert rendszeren :-)  (Misi)
    8 #CXX := $(shell type -p g++-3.4 || type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
    9 CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     8CXX := $(shell type -p g++-3.4 || type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     9#CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
    1010CC := $(CXX)
    1111
  • src/work/marci/bfs_iterator.h

    r389 r409  
    2929      own_reached_map(true) { }
    3030    ~BfsIterator() { if (own_reached_map) delete &reached; }
     31    //s is marcked reached.
     32    //if the queue is empty, then the its is pushed ant the first OutEdgeIt is processe.
     33    //is the queue is not empty, then is it pushed.
    3134    void pushAndSetReached(Node s) {
    3235      reached.set(s, true);
     
    8184    }
    8285    bool finished() const { return bfs_queue.empty(); }
    83     operator OutEdgeIt () const { return actual_edge; }
     86    operator OutEdgeIt() const { return actual_edge; }
    8487    bool isBNodeNewlyReached() const { return b_node_newly_reached; }
    8588    bool isANodeExamined() const { return !(graph->valid(actual_edge)); }
     
    8992    const std::queue<Node>& getBfsQueue() const { return bfs_queue; }
    9093  }; 
     94
     95  /// Bfs searches from s for the nodes wich are not marked in
     96  /// reachedmap
     97  template <typename Graph,
     98            typename ReachedMap=typename Graph::template NodeMap<bool>,
     99            typename PredMap
     100            =typename Graph::template NodeMap<typename Graph::Edge>,
     101            typename DistMap=typename Graph::template NodeMap<int> >
     102  class Bfs : public BfsIterator<Graph, ReachedMap> {
     103    typedef BfsIterator<Graph, ReachedMap> Parent;
     104  protected:
     105    typedef typename Parent::Node Node;
     106    PredMap& pred;
     107    DistMap& dist;
     108  public:
     109    Bfs<Graph, ReachedMap, PredMap, DistMap>(const Graph& _graph, ReachedMap& _reached, PredMap& _pred, DistMap& _dist) : BfsIterator<Graph, ReachedMap>(_graph, _reached), pred(&_pred), dist(&_dist) { }
     110    //s is marked to be reached and pushed in the bfs queue.
     111    //if the queue is empty, then the first out-edge is processed
     112    //If s was not marked previously, then
     113    //in addition its pred is set to be INVALID, and dist to 0.
     114    //if s was marked previuosly, then it is simply pushed.
     115    void push(Node s) {
     116      if (this->reached[s]) {
     117        Parent::pushAndSetReached(s);
     118      } else {
     119        Parent::pushAndSetReached(s);
     120        pred.set(s, INVALID);
     121        dist.set(s, 0);
     122      }
     123    }
     124    void run(Node s) {
     125      push(s);
     126      while (!this->finished()) this->operator++();
     127    }
     128    Bfs<Graph, ReachedMap, PredMap, DistMap> operator++() {
     129      Parent::operator++();
     130      if (this->graph->valid(actual_edge) && this->b_node_newly_reached) {
     131        pred.set(s, actual_edge);
     132        dist.set(s, dist[this->aNode()]);
     133      }
     134      return *this;
     135    }
     136    const PredMap& getPredMap() const { return pred; }
     137    const DistMap& getDistMap() const { return dist; }
     138  };
    91139
    92140  template <typename Graph, /*typename OutEdgeIt,*/
     
    143191    }
    144192    bool finished() const { return dfs_stack.empty(); }
    145     operator OutEdgeIt () const { return actual_edge; }
     193    operator OutEdgeIt() const { return actual_edge; }
    146194    bool isBNodeNewlyReached() const { return b_node_newly_reached; }
    147195    bool isANodeExamined() const { return !(graph->valid(actual_edge)); }
  • src/work/marci/bipartite_graph_wrapper_test.cc

    r393 r409  
    2525
    2626  Graph g;
    27   //Node s, t;
    28   //Graph::EdgeMap<int> cap(g);
    29   //readDimacsMaxFlow(std::cin, g, s, t, cap);
    30   std::vector<Graph::Node> s_nodes;
    31   std::vector<Graph::Node> t_nodes;
    32   for (int i=0; i<3; ++i) s_nodes.push_back(g.addNode());
    33   for (int i=0; i<3; ++i) t_nodes.push_back(g.addNode());
    34   g.addEdge(s_nodes[0], t_nodes[2]);
    35   g.addEdge(t_nodes[1], s_nodes[2]);
     27//   std::vector<Graph::Node> s_nodes;
     28//   std::vector<Graph::Node> t_nodes;
     29//   for (int i=0; i<3; ++i) s_nodes.push_back(g.addNode());
     30//   for (int i=0; i<3; ++i) t_nodes.push_back(g.addNode());
     31//   g.addEdge(s_nodes[0], t_nodes[2]);
     32//   g.addEdge(t_nodes[1], s_nodes[2]);
     33//   g.addEdge(s_nodes[0], t_nodes[1]);
     34 
     35//   Graph::NodeMap<int> ref_map(g, -1);
     36//   IterableBoolMap< Graph::NodeMap<int> > bipartite_map(ref_map);
     37//   for (int i=0; i<3; ++i) bipartite_map.insert(s_nodes[i], false);
     38//   for (int i=0; i<3; ++i) bipartite_map.insert(t_nodes[i], true);
     39
     40  std::vector<Graph::Node> nodes;
     41  for (int i=0; i<3; ++i) nodes.push_back(g.addNode());
     42  for (int i=3; i<6; ++i) nodes.push_back(g.addNode());
     43  g.addEdge(nodes[0], nodes[3+2]);
     44  g.addEdge(nodes[3+1], nodes[2]);
     45  g.addEdge(nodes[0], nodes[3+1]);
    3646 
    3747  Graph::NodeMap<int> ref_map(g, -1);
    3848  IterableBoolMap< Graph::NodeMap<int> > bipartite_map(ref_map);
    39   for (int i=0; i<3; ++i) bipartite_map.insert(s_nodes[i], false);
    40   for (int i=0; i<3; ++i) bipartite_map.insert(t_nodes[i], true);
     49  for (int i=0; i<3; ++i) bipartite_map.insert(nodes[i], false);
     50  for (int i=3; i<6; ++i) bipartite_map.insert(nodes[i], true);
     51
     52  Graph::Node u;
     53  std::cout << "These nodes will be in S:\n";
     54  //FIXME azert kellene ++, es invalid vizsgalat u-bol, hogy ezt le lehessen
     55  //irni 1etlen FOR_EACH-csel.
     56  for (bipartite_map.first(u, false); g.valid(u); bipartite_map.next(u))
     57    std::cout << u << " ";
     58  std::cout << "\n";
     59  std::cout << "These nodes will be in T:\n";
     60  for (bipartite_map.first(u, true); g.valid(u); bipartite_map.next(u))
     61    std::cout << u << " ";
     62  std::cout << "\n";
     63
    4164  typedef BipartiteGraphWrapper<Graph> BGW;
    4265  BGW bgw(g, bipartite_map);
     66
     67  std::cout << "Nodes by NodeIt:\n";
     68  FOR_EACH_LOC(BGW::NodeIt, n, bgw) {
     69    std::cout << n << " ";
     70  }
     71  std::cout << "\n";
     72  std::cout << "Nodes in S by ClassNodeIt:\n";
     73  FOR_EACH_INC_LOC(BGW::ClassNodeIt, n, bgw, bgw.S_CLASS) {
     74    std::cout << n << " ";
     75  }
     76  std::cout << "\n";
     77  std::cout << "Nodes in T by ClassNodeIt:\n";
     78  FOR_EACH_INC_LOC(BGW::ClassNodeIt, n, bgw, bgw.T_CLASS) {
     79    std::cout << n << " ";
     80  }
     81  std::cout << "\n";
     82  std::cout << "Edges of the bipartite graph:\n";
    4383  FOR_EACH_LOC(BGW::EdgeIt, e, bgw) {
    4484    std::cout << bgw.tail(e) << "->" << bgw.head(e) << std::endl;
     
    5999  s=g.first(si);
    60100  bfs.pushAndSetReached(BGW::Node(s));
    61   while (!bfs.finished()) ++bfs;
     101  while (!bfs.finished()) { ++bfs; }
    62102
    63   BGW::EdgeMap<bool> cap(bgw);
    64   BGW::EdgeMap<bool> flow1(bgw);
     103  FOR_EACH_LOC(stGW::NodeIt, n, stgw) {
     104    std::cout << "out-edges of " << n << ":\n";
     105    FOR_EACH_INC_LOC(stGW::OutEdgeIt, e, stgw, n) {
     106      std::cout << " " << e << "\n";
     107      std::cout << " aNode: " << stgw.aNode(e) << "\n";
     108      std::cout << " bNode: " << stgw.bNode(e) << "\n";     
     109    }
     110    std::cout << "in-edges of " << n << ":\n";
     111    FOR_EACH_INC_LOC(stGW::InEdgeIt, e, stgw, n) {
     112      std::cout << " " << e << "\n";
     113      std::cout << " aNode: " << stgw.aNode(e) << "\n";
     114      std::cout << " bNode: " << stgw.bNode(e) << "\n";     
     115    }
     116  }
     117  std::cout << "Edges of the stGraphWrapper:\n";
     118  FOR_EACH_LOC(stGW::EdgeIt, n, stgw) {
     119    std::cout << " " << n << "\n";
     120  }
    65121
    66   typedef ResGraphWrapper< BGW, int, BGW::EdgeMap<bool>, BGW::EdgeMap<bool> >
    67     RBGW;
    68   RBGW rbgw(bgw, cap, flow1);
    69   RBGW::NodeMap<int> u(rbgw);
     122  stGW::NodeMap<bool> b(stgw);
     123  FOR_EACH_LOC(stGW::NodeIt, n, stgw) {
     124    std::cout << n << ": " << b[n] <<"\n";
     125  }
     126
     127  std::cout << "Bfs from s: \n";
     128  BfsIterator< stGW, stGW::NodeMap<bool> > bfs_stgw(stgw);
     129  bfs_stgw.pushAndSetReached(stgw.S_NODE);
     130  while (!bfs_stgw.finished()) {
     131    std::cout << " " << stGW::OutEdgeIt(bfs_stgw) << "\n";
     132    ++bfs_stgw;
     133  }
    70134 
    71 
    72135  MaxFlow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
    73136    max_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, flow);
    74   max_flow_test.augmentOnShortestPath();
    75   max_flow_test.augmentOnShortestPath();
     137  while (max_flow_test.augmentOnShortestPath()) { }
    76138
    77139  std::cout << max_flow_test.flowValue() << std::endl;
  • src/work/marci/edmonds_karp.h

    r389 r409  
    323323    public:
    324324      DistanceMap(MapGraphWrapper& _g) : g(&_g), dist(*g, g->nodeNum()) { }
    325       void set(const typename MapGraphWrapper::Node& n, int a) { dist[n]=a; }
     325      void set(const typename MapGraphWrapper::Node& n, int a) {
     326        dist.set(n, a);
     327      }
    326328      int operator[](const typename MapGraphWrapper::Node& n)
    327329        { return dist[n]; }
  • src/work/marci/for_each_macros.h

    r333 r409  
    55namespace hugo {
    66
    7 #define FOR_EACH(e, g) for((g).first((e)); (g).valid((e)); (g).next((e)))
    8 #define FOR_EACH_INC(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e)))
     7#define FOR_EACH_GLOB(e, g) for((g).first((e)); (g).valid((e)); (g).next((e)))
     8#define FOR_EACH_INC_GLOB(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e)))
    99
    10 #define FOR_EACH_EDGE(e, g) for((g).first((e)); (g).valid((e)); (g).next((e)))
    11 #define FOR_EACH_NODE(e, g) for((g).first((e)); (g).valid((e)); (g).next((e)))
    12 #define FOR_EACH_INEDGE(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e)))
    13 #define FOR_EACH_OUTEDGE(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e)))
     10#define FOR_EACH_EDGE_GLOB(e, g) for((g).first((e)); (g).valid((e)); (g).next((e)))
     11#define FOR_EACH_NODE_GLOB(e, g) for((g).first((e)); (g).valid((e)); (g).next((e)))
     12#define FOR_EACH_INEDGE_GLOB(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e)))
     13#define FOR_EACH_OUTEDGE_GLOB(e, g, v) for((g).first((e), (v)); (g).valid((e)); (g).next((e)))
    1414
    1515//   template<typename It, typename Graph>
  • src/work/marci/graph_wrapper.h

    r406 r409  
    924924
    925925  public:
    926     static const bool S_CLASS=false;
    927     static const bool T_CLASS=true;
     926    //marci
     927    //FIXME vhogy igy kellene, csak az en forditom nem eszi meg
     928    //static const bool S_CLASS=false;
     929    //static const bool T_CLASS=true;
    928930   
     931    bool S_CLASS;
     932    bool T_CLASS;
     933
    929934    BipartiteGraphWrapper(Graph& _graph, SFalseTTrueMap& _s_false_t_true_map)
    930       : GraphWrapper<Graph>(_graph), s_false_t_true_map(&_s_false_t_true_map) {
    931     }
     935      : GraphWrapper<Graph>(_graph), s_false_t_true_map(&_s_false_t_true_map),
     936      S_CLASS(false), T_CLASS(true) { }
    932937    typedef typename GraphWrapper<Graph>::Node Node;
    933938    //using GraphWrapper<Graph>::NodeIt;
     
    11031108//invalid, 3, invalid)
    11041109    template <typename T> class NodeMap;
    1105     template <typename T> class EdgeMap;
     1110    template <typename T, typename Parent> class EdgeMap;
    11061111
    11071112//    template <typename T> friend class NodeMap;
     
    11421147                static_cast<typename Graph::Node>(u)!=
    11431148                static_cast<typename Graph::Node>(v));
    1144       }
     1149      }
     1150      friend std::ostream& operator<<(std::ostream& os, const Node& i);
    11451151      int getSpec() const { return spec; }
    11461152    };
     1153
    11471154    class NodeIt {
    11481155      friend class GraphWrapper<Graph>;
     
    11561163      NodeIt(const Invalid& i) : n(i), spec(3) { }
    11571164      NodeIt(const stGraphWrapper<Graph>& _G) : n(*(_G.graph)), spec(0) {
    1158         if (!_G->valid(n)) spec=1;
     1165        if (!_G.graph->valid(n)) spec=1;
    11591166      }
    11601167      operator Node() const { return Node(n, spec); }
    11611168    };
     1169
    11621170    class Edge : public Graph::Edge {
    11631171      friend class GraphWrapper<Graph>;
    11641172      friend class stGraphWrapper<Graph>;
    1165       template <typename T> friend class EdgeMap;
     1173      template <typename T, typename Parent> friend class EdgeMap;
    11661174      int spec;
    11671175      typename Graph::Node n;
     
    11851193                u.n!=v.n);
    11861194      }
     1195      friend std::ostream& operator<<(std::ostream& os, const Edge& i);
    11871196      int getSpec() const { return spec; }
    11881197    };
     1198
    11891199    class OutEdgeIt {
    11901200      friend class GraphWrapper<Graph>;
     
    12301240      operator Edge() const { return Edge(e, spec, n); }
    12311241    };
     1242
    12321243    class InEdgeIt {
    12331244      friend class GraphWrapper<Graph>;
     
    12621273            spec=3;
    12631274            n=INVALID;
     1275            break;
    12641276          case 2:
    12651277            e=INVALID;
    1266             spec=1;
     1278            spec=2;
    12671279            _G.graph->first(n, T_CLASS); //vmi->t;
    12681280            if (!_G.graph->valid(n)) spec=3; //Ha T ures
     
    12721284      operator Edge() const { return Edge(e, spec, n); }
    12731285    };
     1286
    12741287    class EdgeIt {
    12751288      friend class GraphWrapper<Graph>;
     
    13351348      switch (i.spec) {
    13361349        case 0: //normal edge
    1337           this->graph->aNode(i.e);
     1350          v=this->graph->aNode(i.e);
    13381351          this->graph->next(i.e);
    13391352          if (!this->graph->valid(i.e)) { //Az igazi elek vegere ertunk
     
    14481461    bool valid(const Edge& e) const { return (e.spec<3); }
    14491462
    1450 //    int nodeNum() const { return this->graph->nodeNum(); }
    1451 //    int edgeNum() const { return this->graph->edgeNum(); }
     1463    int nodeNum() const { return this->graph->nodeNum()+2; }
     1464    int edgeNum() const {
     1465      return this->graph->edgeNum()+this->graph->nodeNum();
     1466    }
    14521467 
    14531468    Node aNode(const OutEdgeIt& e) const { return tail(e); }
     
    14551470    Node bNode(const OutEdgeIt& e) const { return head(e); }
    14561471    Node bNode(const InEdgeIt& e) const { return tail(e); }
    1457  
     1472
     1473    void addNode() const { }
     1474    void addEdge() const { }
     1475   
    14581476//    Node addNode() const { return Node(this->graph->addNode()); }
    14591477//    Edge addEdge(const Node& tail, const Node& head) const {
     
    14691487      T s_value, t_value;
    14701488    public:
    1471       NodeMap(const stGraphWrapper<Graph>& _G) :  Parent(_G) { }
     1489      NodeMap(const stGraphWrapper<Graph>& _G) :  Parent(_G),
     1490                                                  s_value(),
     1491                                                  t_value() { }
    14721492      NodeMap(const stGraphWrapper<Graph>& _G, T a) : Parent(_G, a),
    14731493                                                      s_value(a),
     
    15031523    };
    15041524
    1505     template<typename T> class EdgeMap : public GraphWrapper<Graph>::template EdgeMap<T> {
    1506       typedef typename GraphWrapper<Graph>::template EdgeMap<T> Parent;
     1525    template<typename T,
     1526             typename Parent=
     1527             typename GraphWrapper<Graph>::template EdgeMap<T> >
     1528    class EdgeMap : public Parent {
     1529      //typedef typename GraphWrapper<Graph>::template EdgeMap<T> Parent;
    15071530      typename GraphWrapper<Graph>::template NodeMap<T> node_value;
    15081531    public:
     
    15281551        switch (e.spec) {
    15291552        case 0:
    1530           GraphWrapper<Graph>::template EdgeMap<T>::set(e, t);
     1553          Parent::set(e, t);
    15311554          break;
    15321555        case 1:
     
    15401563      }
    15411564    };
     1565
     1566//     template<typename T> class EdgeMap : public GraphWrapper<Graph>::template EdgeMap<T> {
     1567//       typedef typename GraphWrapper<Graph>::template EdgeMap<T> Parent;
     1568//       typename GraphWrapper<Graph>::template NodeMap<T> node_value;
     1569//     public:
     1570//       EdgeMap(const stGraphWrapper<Graph>& _G) : Parent(_G),
     1571//                                               node_value(_G) { }
     1572//       EdgeMap(const stGraphWrapper<Graph>& _G, T a) : Parent(_G, a),
     1573//                                                    node_value(_G, a) { }
     1574//       T operator[](const Edge& e) const {
     1575//      switch (e.spec) {
     1576//      case 0:
     1577//        return Parent::operator[](e);
     1578//        break;
     1579//      case 1:
     1580//        return node_value[e.n];
     1581//        break;
     1582//      case 2:
     1583//      default:
     1584//        return node_value[e.n];
     1585//        break;
     1586//      }
     1587//       }
     1588//       void set(const Edge& e, T t) {
     1589//      switch (e.spec) {
     1590//      case 0:
     1591//        GraphWrapper<Graph>::template EdgeMap<T>::set(e, t);
     1592//        break;
     1593//      case 1:
     1594//        node_value.set(e.n, t);
     1595//        break;
     1596//      case 2:
     1597//      default:
     1598//        node_value.set(e.n, t);
     1599//        break;
     1600//      }
     1601//       }
     1602//     };
     1603
     1604    friend std::ostream& operator<<(std::ostream& os, const Node& i) {
     1605      os << "(node: " << typename Graph::Node(i) << " spec: " << i.spec <<")";
     1606      return os;
     1607    }
     1608    friend std::ostream& operator<<(std::ostream& os, const Edge& i) {
     1609      os << "(edge: " << typename Graph::Edge(i) << " spec: " << i.spec <<
     1610        " node: " << i.n << ")";
     1611      return os;
     1612    }
     1613
    15421614  };
    15431615
  • src/work/marci/leda_graph_wrapper.h

    r198 r409  
    2323  // @{
    2424
    25   /// An empty graph class.
     25  /// A graph wrapperstructure for wrapping LEDA graphs in HUGO.
    2626 
     27  /// This graph wrapper class wraps LEDA graph and LEDA parametrized graph
     28  /// and then the generic algorithms and wrappers of HUGO can be used
     29  /// with LEDA graphs.
    2730  /// This class provides all the common features of a grapf structure,
    2831  /// however completely without implementations or real data structures
     
    195198    }
    196199
    197     template< typename It >
    198     It first() const {
    199       It e;
    200       first(e);
    201       return e;
    202     }
    203 
    204     template< typename It >
    205     It first(Node v) const {
    206       It e;
    207       first(e, v);
    208       return e;
    209     }
     200//     template< typename It >
     201//     It first() const {
     202//       It e;
     203//       first(e);
     204//       return e;
     205//     }
     206
     207//     template< typename It >
     208//     It first(Node v) const {
     209//       It e;
     210//       first(e, v);
     211//       return e;
     212//     }
    210213
    211214    ///Gives back the head node of an edge.
  • src/work/marci/macro_test.cc

    r330 r409  
    1515  Graph::Node n2=g.addNode();
    1616  Graph::NodeIt n;
    17   FOR_EACH(n, g) {
     17  FOR_EACH_GLOB(n, g) {
    1818    std::cout << g.id(n) << " ";
    1919  }
  • src/work/marci/makefile

    r389 r409  
    1010
    1111LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
    12 BINARIES = edmonds_karp_demo iterator_bfs_demo macro_test lg_vs_sg bfsit_vs_byhand bipartite_graph_wrapper_test
     12BINARIES = edmonds_karp_demo iterator_bfs_demo macro_test lg_vs_sg bfsit_vs_byhand bipartite_graph_wrapper_test bipartite_matching_try
    1313#gw_vs_not preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda
    1414
Note: See TracChangeset for help on using the changeset viewer.