src/demo/sub_graph_wrapper_demo.dim
author klao
Sun, 20 Feb 2005 01:02:07 +0000
changeset 1158 29961fa390a3
parent 867 f3cc65f9fb6b
permissions -rw-r--r--
Graph and UndirGraph concept modifications.

* For incidence iterators ({In,Out,Inc}EdgeIt) there is now baseNode and
runningNode functions in graph interface
* For Edge in undir graphs: Edge(UndirGraph const &, UndirEdge, Node)
constructor. Same for IncEdgeIt
* Edge(UndirEdge, bool) constructor is no more in the public interface. (But we
need it in the developpers interface).
     1 c LEMON max flow problem
     2 p max 7 9
     3 n 1 s
     4 n 7 t
     5 a 1 2 3
     6 a 1 3 2
     7 a 1 4 1
     8 a 2 5 3
     9 a 3 5 2
    10 a 3 7 5
    11 a 3 6 3
    12 a 4 6 1
    13 a 5 7 2
    14 a 6 7 4