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@1183: You will also want to assign data to the edges or nodes of the graph, for example a length or capacity function defined on the edges. You can do this in LEMON using so called \ref maps "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 any type. Read more about maps \ref maps-page "here".
athos@1175:
athos@1181: Some examples are the following (you will find links next to the code fragments that help to download full demo programs):
athos@1175:
athos@1175: - 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@1181: -# 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 supppose them later as well.
athos@1175: \code
athos@1175: typedef ListGraph Graph;
athos@1175: typedef Graph::Edge Edge;
athos@1175: typedef Graph::InEdgeIt InEdgeIt;
athos@1175: typedef Graph::OutEdgeIt OutEdgeIt;
athos@1175: typedef Graph::EdgeIt EdgeIt;
athos@1175: typedef Graph::Node Node;
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@1181: If you want to read more on the LEMON graph structures and concepts, read the page about \ref graphs "graphs".
athos@1181:
athos@1181: -# 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@1183: in that format (find the documentation of the DIMECS 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@1175:
athos@1175: - 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@1183: std::cout << "The id of s is " << g.id(s)<< ", 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)<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@1175: \code
athos@1175:
athos@1175: \endcode
athos@1175:
athos@1175:
athos@1175: */