src/work/marci/preflow_demo_athos.cc
author deba
Wed, 08 Sep 2004 12:06:45 +0000 (2004-09-08)
changeset 822 88226d9fe821
parent 105 a3c73e9b9b2e
child 921 818510fa3d99
permissions -rw-r--r--
The MapFactories have been removed from the code because
if we use macros then they increases only the complexity.

The pair iterators of the maps are separeted from the maps.

Some macros and comments has been changed.
     1 #include <iostream>
     2 #include <fstream>
     3 
     4 #include <list_graph.h>
     5 #include <dimacs.h>
     6 #include <preflow_push.hh>
     7 #include <time_measure.h>
     8 
     9 using namespace hugo;
    10 
    11 // Use a DIMACS max flow file as stdin.
    12 // read_dimacs_demo < dimacs_max_flow_file
    13 int main(int, char **) {
    14   typedef ListGraph::Node Node;
    15   //typedef ListGraph::EachEdgeIt EachEdgeIt;
    16 
    17   ListGraph G;
    18   Node s, t;
    19   ListGraph::EdgeMap<int> cap(G);
    20   readDimacsMaxFlow(std::cin, G, s, t, cap);
    21 
    22   std::cout << "preflow demo (ATHOS)..." << std::endl;
    23   //ListGraph::EdgeMap<int> flow(G); //0 flow
    24 
    25   double pre_time=currTime();
    26   preflow_push<ListGraph, int> max_flow_test(G, s, t, cap);
    27   int flow_value=max_flow_test.run();
    28   //ListGraph::NodeMap<bool> cut=max_flow_test.mincut();
    29   //int cut_value=0;
    30   //for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) {
    31   //  if (cut.get(G.tail(e)) && !cut.get(G.head(e))) cut_value+=cap.get(e);
    32   //}
    33   double post_time=currTime();
    34   //std::cout << "maximum flow: "<< std::endl;
    35   //for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) { 
    36   //  std::cout<<"("<<G.tail(e)<< "-"<<flow.get(e)<<"->"<<G.head(e)<<") ";
    37   //}
    38   //std::cout<<std::endl;
    39   std::cout << "elapsed time: " << post_time-pre_time << " sec"<< std::endl; 
    40   std::cout << "flow value: "<< flow_value << std::endl;
    41   //std::cout << "cut value: "<< cut_value << std::endl;
    42 
    43   return 0;
    44 }