COIN-OR::LEMON - Graph Library

Changeset 522:a0ed1fa1b800 in lemon-0.x for src/work


Ignore:
Timestamp:
05/04/04 13:20:16 (20 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@687
Message:

Nothing special.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/preflow_demo_athos.cc

    r105 r522  
    22#include <fstream>
    33
    4 #include <list_graph.hh>
    5 #include <dimacs.hh>
     4#include <list_graph.h>
     5#include <dimacs.h>
    66#include <preflow_push.hh>
    77#include <time_measure.h>
     
    1212// read_dimacs_demo < dimacs_max_flow_file
    1313int main(int, char **) {
    14   typedef ListGraph::NodeIt NodeIt;
    15   typedef ListGraph::EachEdgeIt EachEdgeIt;
     14  typedef ListGraph::Node Node;
     15  //typedef ListGraph::EachEdgeIt EachEdgeIt;
    1616
    1717  ListGraph G;
    18   NodeIt s, t;
     18  Node s, t;
    1919  ListGraph::EdgeMap<int> cap(G);
    2020  readDimacsMaxFlow(std::cin, G, s, t, cap);
Note: See TracChangeset for help on using the changeset viewer.