src/work/marci/read_dimacs_demo.cc
author marci
Thu, 12 Feb 2004 18:11:08 +0000
changeset 71 1d8d806ac8e0
parent 69 24c2c2989e0f
permissions -rw-r--r--
read_dimacs_demo: measures elapsed time
     1 #include <sys/time.h>
     2 #include <iostream>
     3 #include <fstream>
     4 
     5 #include <list_graph.hh>
     6 #include <dimacs.hh>
     7 #include <edmonds_karp.hh>
     8 
     9 using namespace marci;
    10 
    11 double currTime() {
    12   timeval tv;
    13   //timezone tz;
    14   gettimeofday(&tv, 0);
    15   return double(tv.tv_sec)+double(tv.tv_usec)/1000000.0;
    16 }
    17 
    18 // Use a DIMACS max flow file as stdin.
    19 // read_dimacs_demo < dimacs_flow_file
    20 int main(int, char **) {
    21   typedef ListGraph::NodeIt NodeIt;
    22   typedef ListGraph::EachEdgeIt EachEdgeIt;
    23 
    24   ListGraph G;
    25   NodeIt s, t;
    26   ListGraph::EdgeMap<int> cap(G);
    27   readDimacsMaxFlow(std::cin, G, s, t, cap);
    28 
    29   std::cout << "augmenting path flow algorithm demo..." << std::endl;
    30   ListGraph::EdgeMap<int> flow(G); //0 flow
    31 
    32   double preTime=currTime();
    33   MaxFlow<ListGraph, int, ListGraph::EdgeMap<int>, ListGraph::EdgeMap<int> > max_flow_test(G, s, t, flow, cap);
    34   max_flow_test.run();
    35   double pushTime=currTime();
    36   std::cout << "maximum flow: "<< std::endl;
    37   for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) { 
    38     std::cout<<"("<<G.tail(e)<< "-"<<flow.get(e)<<"->"<<G.head(e)<<") ";
    39   }
    40   std::cout<<std::endl;
    41   std::cout << "elapsed time: " << pushTime-preTime << " sec"<< std::endl; 
    42   std::cout << "flow value: "<< max_flow_test.flowValue() << std::endl;
    43 
    44   return 0;
    45 }