athos@1169: /**
athos@1169:
alpar@1170: \page quicktour Quick Tour to LEMON
alpar@1170:
athos@1175: Let us first answer the question "What do I want to use LEMON for?"
athos@1175: .
athos@1175: LEMON is a C++ library, so you can use it if you want to write C++
athos@1175: programs. What kind of tasks does the library LEMON help to solve?
athos@1175: It helps to write programs that solve optimization problems that arise
athos@1175: frequently when designing and testing certain networks, for example
athos@1175: in telecommunication, computer networks, and other areas that I cannot
athos@1175: think of now. A very natural way of modelling these networks is by means
athos@1183: of a graph (we will always mean a directed graph by that and say
athos@1183: undirected graph otherwise).
athos@1175: So if you want to write a program that works with
athos@1183: graphs then you might find it useful to use our library LEMON. LEMON
athos@1183: defines various graph concepts depending on what you want to do with the
athos@1183: graph: a very good description can be found in the page
athos@1183: about \ref graphs "graphs".
athos@1175:
athos@1514: You will also want to assign data to the edges or nodes of the graph, for
athos@1514: example a length or capacity function defined on the edges. You can do this in
athos@1514: LEMON using so called \b maps. You can define a map on the nodes or on the edges of the graph and the value of the map (the range of the function) can be practically almost of any type. Read more about maps \ref maps-page "here".
athos@1175:
athos@1511: Some examples are the following (you will find links next to the code fragments that help to download full demo programs: save them on your computer and compile them according to the description in the page about \ref getsart How to start using LEMON):
athos@1175:
athos@1514:
athos@1514: - First we give two examples that show how to instantiate a graph. The
athos@1175: first one shows the methods that add nodes and edges, but one will
athos@1175: usually use the second way which reads a graph from a stream (file).
athos@1514:
athos@1514: - The following code fragment shows how to fill a graph with data. It creates a complete graph on 4 nodes. The type Listgraph is one of the LEMON graph types: the typedefs in the beginning are for convenience and we will suppose them later as well.
athos@1175: \code
athos@1175: typedef ListGraph Graph;
athos@1175: typedef Graph::NodeIt NodeIt;
athos@1175:
athos@1175: Graph g;
athos@1175:
athos@1175: for (int i = 0; i < 3; i++)
athos@1175: g.addNode();
athos@1175:
athos@1175: for (NodeIt i(g); i!=INVALID; ++i)
athos@1175: for (NodeIt j(g); j!=INVALID; ++j)
athos@1175: if (i != j) g.addEdge(i, j);
athos@1175: \endcode
athos@1175:
athos@1511: See the whole program in file \ref helloworld.cc.
athos@1511:
athos@1514: If you want to read more on the LEMON graph structures and concepts, read the page about \ref graphs "graphs".
athos@1181:
athos@1514:
- The following code shows how to read a graph from a stream (e.g. a file). LEMON supports the DIMACS file format: it can read a graph instance from a file
athos@1511: in that format (find the documentation of the DIMACS file format on the web).
athos@1181: \code
athos@1181: Graph g;
athos@1181: std::ifstream f("graph.dim");
athos@1181: readDimacs(f, g);
athos@1181: \endcode
athos@1183: One can also store network (graph+capacity on the edges) instances and other things in DIMACS format and use these in LEMON: to see the details read the documentation of the \ref dimacs.h "Dimacs file format reader".
athos@1181:
athos@1514:
athos@1514: - If you want to solve some transportation problems in a network then
athos@1175: you will want to find shortest paths between nodes of a graph. This is
athos@1175: usually solved using Dijkstra's algorithm. A utility
athos@1175: that solves this is the \ref lemon::Dijkstra "LEMON Dijkstra class".
athos@1183: The following code is a simple program using the \ref lemon::Dijkstra "LEMON
athos@1183: Dijkstra class" and it also shows how to define a map on the edges (the length
athos@1183: function):
athos@1175:
athos@1175: \code
athos@1183:
athos@1183: typedef ListGraph Graph;
athos@1183: typedef Graph::Node Node;
athos@1183: typedef Graph::Edge Edge;
athos@1183: typedef Graph::EdgeMap LengthMap;
athos@1183:
athos@1183: Graph g;
athos@1183:
athos@1183: //An example from Ahuja's book
athos@1183:
athos@1183: Node s=g.addNode();
athos@1183: Node v2=g.addNode();
athos@1183: Node v3=g.addNode();
athos@1183: Node v4=g.addNode();
athos@1183: Node v5=g.addNode();
athos@1183: Node t=g.addNode();
athos@1183:
athos@1183: Edge s_v2=g.addEdge(s, v2);
athos@1183: Edge s_v3=g.addEdge(s, v3);
athos@1183: Edge v2_v4=g.addEdge(v2, v4);
athos@1183: Edge v2_v5=g.addEdge(v2, v5);
athos@1183: Edge v3_v5=g.addEdge(v3, v5);
athos@1183: Edge v4_t=g.addEdge(v4, t);
athos@1183: Edge v5_t=g.addEdge(v5, t);
athos@1183:
athos@1183: LengthMap len(g);
athos@1183:
athos@1183: len.set(s_v2, 10);
athos@1183: len.set(s_v3, 10);
athos@1183: len.set(v2_v4, 5);
athos@1183: len.set(v2_v5, 8);
athos@1183: len.set(v3_v5, 5);
athos@1183: len.set(v4_t, 8);
athos@1183: len.set(v5_t, 8);
athos@1183:
athos@1511: std::cout << "The id of s is " << g.id(s)<< std::endl;
athos@1511: std::cout <<"The id of t is " << g.id(t)<<"."< dijkstra_test(g,len);
athos@1183:
athos@1183: dijkstra_test.run(s);
athos@1183:
athos@1183:
athos@1183: std::cout << "The distance of node t from node s: " << dijkstra_test.dist(t)< If you want to design a network and want to minimize the total length
athos@1175: of wires then you might be looking for a minimum spanning tree in
athos@1175: an undirected graph. This can be found using the Kruskal algorithm: the
athos@1175: class \ref lemon::Kruskal "LEMON Kruskal class" does this job for you.
athos@1175: The following code fragment shows an example:
athos@1175:
athos@1511: Ide Zsuzska fog irni!
athos@1511:
athos@1517:
- Many problems in network optimization can be formalized by means
athos@1517: of a linear programming problem (LP problem, for short). In our
athos@1517: library we decided not to write an LP solver, since such packages are
athos@1517: available in the commercial world just as well as in the open source
athos@1517: world, and it is also a difficult task to compete these. Instead we
athos@1517: decided to develop an interface that makes it easier to use these
athos@1517: solvers together with LEMON. The advantage of this approach is
athos@1517: twofold. Firstly our C++ interface is more comfortable than the
athos@1517: solvers' native interface. Secondly, changing the underlying solver in
athos@1517: a certain software using LEMON's LP interface needs zero effort. So,
athos@1517: for example, one may try his idea using a free solver, demonstrate its
athos@1517: usability for a customer and if it works well, but the performance
athos@1517: should be improved, then one may decide to purchase and use a better
athos@1517: commercial solver.
athos@1517:
athos@1517: So far we have an
athos@1514: interface for the commercial LP solver software \b CLPLEX (developed by ILOG)
athos@1514: and for the open source solver \b GLPK (a shorthand for Gnu Linear Programming
athos@1517: Toolkit).
athos@1514:
athos@1514: We will show two examples, the first one shows how simple it is to formalize
athos@1514: and solve an LP problem in LEMON, while the second one shows how LEMON
athos@1514: facilitates solving network optimization problems using LP solvers.
athos@1514:
athos@1514:
athos@1514: - The following code shows how to solve an LP problem using the LEMON lp
athos@1517: interface. The code together with the comments is self-explanatory.
athos@1511:
athos@1175: \code
athos@1175:
athos@1514: //A default solver is taken
athos@1514: LpDefault lp;
athos@1514: typedef LpDefault::Row Row;
athos@1514: typedef LpDefault::Col Col;
athos@1514:
athos@1514:
athos@1514: //This will be a maximization
athos@1514: lp.max();
athos@1514:
athos@1514: //We add coloumns (variables) to our problem
athos@1514: Col x1 = lp.addCol();
athos@1514: Col x2 = lp.addCol();
athos@1514: Col x3 = lp.addCol();
athos@1514:
athos@1514: //Constraints
athos@1514: lp.addRow(x1+x2+x3 <=100);
athos@1514: lp.addRow(10*x1+4*x2+5*x3<=600);
athos@1514: lp.addRow(2*x1+2*x2+6*x3<=300);
athos@1514: //Nonnegativity of the variables
athos@1514: lp.colLowerBound(x1, 0);
athos@1514: lp.colLowerBound(x2, 0);
athos@1514: lp.colLowerBound(x3, 0);
athos@1514: //Objective function
athos@1514: lp.setObj(10*x1+6*x2+4*x3);
athos@1514:
athos@1514: //Call the routine of the underlying LP solver
athos@1514: lp.solve();
athos@1514:
athos@1514: //Print results
athos@1514: if (lp.primalStatus()==LpSolverBase::OPTIMAL){
athos@1514: printf("Z = %g; x1 = %g; x2 = %g; x3 = %g\n",
athos@1514: lp.primalValue(),
athos@1514: lp.primal(x1), lp.primal(x2), lp.primal(x3));
athos@1514: }
athos@1514: else{
athos@1514: std::cout<<"Optimal solution not found!"<The second example shows how easy it is to formalize a max-flow
athos@1517: problem as an LP problem using the LEMON LP interface: we are looking
athos@1517: for a real valued function defined on the edges of the digraph
athos@1517: satisfying the nonnegativity-, the capacity constraints and the
athos@1517: flow-conservation constraints and giving the largest flow value
athos@1517: between to designated nodes.
athos@1517:
athos@1517: In the following code we suppose that we already have the graph \c g,
athos@1517: the capacity map \c cap, the source node \c s and the target node \c t
athos@1517: in the memory. We will also omit the typedefs.
athos@1517:
athos@1517: \code
athos@1517: //Define a map on the edges for the variables of the LP problem
athos@1517: typename G::template EdgeMap x(g);
athos@1517: lp.addColSet(x);
athos@1517:
athos@1517: //Nonnegativity and capacity constraints
athos@1517: for(EdgeIt e(g);e!=INVALID;++e) {
athos@1517: lp.colUpperBound(x[e],cap[e]);
athos@1517: lp.colLowerBound(x[e],0);
athos@1517: }
athos@1517:
athos@1517:
athos@1517: //Flow conservation constraints for the nodes (except for 's' and 't')
athos@1517: for(NodeIt n(g);n!=INVALID;++n) if(n!=s&&n!=t) {
athos@1517: LpDefault::Expr ex;
athos@1517: for(InEdgeIt e(g,n);e!=INVALID;++e) ex+=x[e];
athos@1517: for(OutEdgeIt e(g,n);e!=INVALID;++e) ex-=x[e];
athos@1517: lp.addRow(ex==0);
athos@1517: }
athos@1517:
athos@1517: //Objective function: the flow value entering 't'
athos@1517: {
athos@1517: LpDefault::Expr ex;
athos@1517: for(InEdgeIt e(g,t);e!=INVALID;++e) ex+=x[e];
athos@1517: for(OutEdgeIt e(g,t);e!=INVALID;++e) ex-=x[e];
athos@1517: lp.setObj(ex);
athos@1517: }
athos@1517:
athos@1517: //Maximization
athos@1517: lp.max();
athos@1517:
athos@1517: //Solve with the underlying solver
athos@1517: lp.solve();
athos@1517:
athos@1517: \endcode
athos@1517:
athos@1517: The complete program can be found in file \ref lp_maxflow_demo.cc. After compiling run it in the form:
athos@1517:
athos@1517: ./lp_maxflow_demo < ?????????.lgf
athos@1517:
athos@1517: where ?????????.lgf is a file in the lemon format containing a maxflow instance (designated "source", "target" nodes and "capacity" map).
athos@1517:
athos@1517:
athos@1517: See the whole code in \ref lp_demo.cc.
athos@1517:
athos@1514:
athos@1514:
athos@1514:
athos@1175:
athos@1175: */