COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/marci/preflow_demo_athos.cc @ 526:def920ddaba7

Last change on this file since 526:def920ddaba7 was 522:a0ed1fa1b800, checked in by athos, 20 years ago

Nothing special.

File size: 1.3 KB
Line 
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
9using namespace hugo;
10
11// Use a DIMACS max flow file as stdin.
12// read_dimacs_demo < dimacs_max_flow_file
13int 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}
Note: See TracBrowser for help on using the repository browser.