demo/sub_graph_adaptor_demo.cc
author athos
Fri, 15 Jul 2005 16:01:55 +0000
changeset 1560 01707a8a4ca6
parent 1544 955e8e83f6b1
child 1577 15098fb5275c
permissions -rw-r--r--
Some demo programs got some interface. Most progress with lp_maxflow_demo.cc, which also got documented.
marci@866
     1
// -*- c++ -*-
marci@866
     2
athos@1560
     3
// Use a DIMACS max flow file as input.
alpar@1401
     4
// sub_graph_adaptor_demo < dimacs_max_flow_file
marci@871
     5
// This program computes a maximum number of edge-disjoint shortest paths
marci@869
     6
// between s and t.
marci@866
     7
marci@866
     8
#include <iostream>
marci@866
     9
#include <fstream>
marci@866
    10
alpar@921
    11
#include <lemon/smart_graph.h>
alpar@921
    12
#include <lemon/dijkstra.h>
alpar@921
    13
#include <lemon/maps.h>
alpar@1401
    14
#include <lemon/graph_adaptor.h>
alpar@921
    15
#include <lemon/dimacs.h>
alpar@921
    16
#include <lemon/preflow.h>
marci@931
    17
#include <tight_edge_filter_map.h>
marci@866
    18
alpar@921
    19
using namespace lemon;
marci@866
    20
marci@866
    21
using std::cout;
marci@866
    22
using std::endl;
marci@866
    23
athos@1560
    24
int main(int argc, char *argv[]) 
athos@1560
    25
{
athos@1560
    26
  if(argc<2)
athos@1560
    27
  {
athos@1560
    28
      std::cerr << "USAGE: sub_graph_adaptor_demo <input_file.dim>" << std::endl;
athos@1560
    29
      std::cerr << "The file 'input_file.dim' has to contain a max flow instance in DIMACS format (e.g. sub_graph_adaptor_demo.dim is such a file)." << std::endl;
athos@1560
    30
      return 0;
athos@1560
    31
  }
athos@1560
    32
athos@1560
    33
athos@1560
    34
  //input stream to read the graph from
athos@1560
    35
  std::ifstream is(argv[1]);
athos@1560
    36
marci@866
    37
  typedef SmartGraph Graph;
marci@866
    38
marci@866
    39
  typedef Graph::Edge Edge;
marci@866
    40
  typedef Graph::Node Node;
marci@866
    41
  typedef Graph::EdgeIt EdgeIt;
marci@866
    42
  typedef Graph::NodeIt NodeIt;
marci@866
    43
  typedef Graph::EdgeMap<int> LengthMap;
marci@866
    44
marci@866
    45
  Graph g;
marci@866
    46
  Node s, t;
marci@866
    47
  LengthMap length(g);
marci@866
    48
athos@1560
    49
  readDimacs(is, g, length, s, t);
marci@866
    50
alpar@986
    51
  cout << "edges with lengths (of form id, source--length->target): " << endl;
marci@866
    52
  for(EdgeIt e(g); e!=INVALID; ++e) 
alpar@986
    53
    cout << " " << g.id(e) << ", " << g.id(g.source(e)) << "--" 
alpar@986
    54
	 << length[e] << "->" << g.id(g.target(e)) << endl;
marci@866
    55
marci@866
    56
  cout << "s: " << g.id(s) << " t: " << g.id(t) << endl;
marci@866
    57
marci@866
    58
  typedef Dijkstra<Graph, LengthMap> Dijkstra;
marci@866
    59
  Dijkstra dijkstra(g, length);
marci@866
    60
  dijkstra.run(s);
marci@866
    61
marci@869
    62
  // This map returns true exactly for those edges which are 
marci@869
    63
  // tight w.r.t the length funcion and the potential 
marci@869
    64
  // given by the dijkstra algorithm.
marci@866
    65
  typedef TightEdgeFilterMap<Graph, const Dijkstra::DistMap, LengthMap> 
marci@866
    66
    TightEdgeFilter;
marci@866
    67
  TightEdgeFilter tight_edge_filter(g, dijkstra.distMap(), length);
marci@866
    68
marci@932
    69
//  ConstMap<Node, bool> const_true_map(true);
marci@869
    70
  // This graph contains exaclty the tight edges.
alpar@1401
    71
// typedef SubGraphAdaptor<Graph, ConstMap<Node, bool>, TightEdgeFilter> SubGW;
alpar@1401
    72
  typedef EdgeSubGraphAdaptor<Graph, TightEdgeFilter> SubGW;
marci@932
    73
  SubGW gw(g, tight_edge_filter);
marci@866
    74
marci@866
    75
  ConstMap<Edge, int> const_1_map(1);
marci@866
    76
  Graph::EdgeMap<int> flow(g, 0);
marci@869
    77
  // Max flow between s and t in the graph of tight edges.
marci@866
    78
  Preflow<SubGW, int, ConstMap<Edge, int>, Graph::EdgeMap<int> > 
marci@866
    79
    preflow(gw, s, t, const_1_map, flow);
marci@866
    80
  preflow.run();
marci@866
    81
athos@1544
    82
  cout << "maximum number of edge-disjoint shortest paths: " 
marci@931
    83
       << preflow.flowValue() << endl;
marci@866
    84
  cout << "edges of the maximum number of edge-disjoint shortest s-t paths: " 
marci@866
    85
       << endl;
marci@866
    86
  for(EdgeIt e(g); e!=INVALID; ++e) 
marci@866
    87
    if (flow[e])
marci@931
    88
      cout << " " << g.id(e) << ", "
alpar@986
    89
	   << g.id(g.source(e)) << "--" 
alpar@986
    90
	   << length[e] << "->" << g.id(g.target(e)) << endl;
marci@866
    91
}