2 * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Research Group on Combinatorial Optimization, EGRES).
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
19 ///\brief Max flow problem solved with an LP solver (demo).
21 ///This demo program shows how to solve a maximum (or maximal) flow
22 ///problem using the LEMON LP solver interface. We would like to lay
23 ///the emphasis on the simplicity of the way one can formulate the LP
24 ///constraints with LEMON that arise in graph theory.
30 #include<lemon/graph_reader.h>
31 #include<lemon/list_graph.h>
38 #include <lemon/lp_glpk.h>
40 #include <lemon/lp_cplex.h>
43 using namespace lemon;
46 typedef LpGlpk LpDefault;
48 typedef LpCplex LpDefault;
52 template<class G,class C>
53 double maxFlow(const G &g,const C &cap,typename G::Node s,typename G::Node t)
58 typedef typename G::Node Node;
59 typedef typename G::NodeIt NodeIt;
60 typedef typename G::Edge Edge;
61 typedef typename G::EdgeIt EdgeIt;
62 typedef typename G::OutEdgeIt OutEdgeIt;
63 typedef typename G::InEdgeIt InEdgeIt;
65 //Define a map on the edges for the variables of the LP problem
66 typename G::template EdgeMap<LpDefault::Col> x(g);
69 //Nonnegativity and capacity constraints
70 for(EdgeIt e(g);e!=INVALID;++e) {
71 lp.colUpperBound(x[e],cap[e]);
72 lp.colLowerBound(x[e],0);
76 //Flow conservation constraints for the nodes (except for 's' and 't')
77 for(NodeIt n(g);n!=INVALID;++n) if(n!=s&&n!=t) {
79 for(InEdgeIt e(g,n);e!=INVALID;++e) ex+=x[e];
80 for(OutEdgeIt e(g,n);e!=INVALID;++e) ex-=x[e];
84 //Objective function: the flow value entering 't'
87 for(InEdgeIt e(g,t);e!=INVALID;++e) ex+=x[e];
88 for(OutEdgeIt e(g,t);e!=INVALID;++e) ex-=x[e];
100 //Solve with the underlying solver
103 return lp.primalValue();
106 int main(int argc, char *argv[])
110 std::cerr << " USAGE: lp_maxflow_demo <input_file.lgf>" << std::endl;
111 std::cerr << " The file 'input_file.lgf' has to contain a max "
112 << "flow instance in\n"
113 << " LEMON format (e.g. sample.lgf is such a file)."
119 //input stream to read the graph from
120 std::ifstream is(argv[1]);
127 ListGraph::EdgeMap<double> cap(g);
129 GraphReader<ListGraph> reader(is,g);
130 reader.readNode("source",s).readNode("target",t)
131 .readEdgeMap("capacity",cap).run();
133 std::cout << "Max flow value = " << maxFlow(g,cap,s,t) << std::endl;