3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2008
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
21 /// \brief Using descriptor map and own special map types.
23 /// This demo shows how can be used the DescriptorMap class
24 /// which helps to use unique label for each node or edge.
25 /// And it gives an example how easy is creating own map types.
27 /// \include descriptor_map_demo.cc
29 #include <lemon/list_graph.h>
30 #include <lemon/graph_utils.h>
31 #include <lemon/graph_writer.h>
32 #include <lemon/dim2.h>
33 #include <lemon/graph_to_eps.h>
35 #include <lemon/random.h>
39 #include <lemon/math.h>
42 using namespace lemon;
44 // Special dim2::Point<double> map type
46 // It gives back a position for each node. The position of the nodes
47 // are on the circle with the given center and radius.
49 // Because we use the descriptor map it will hold the proprty
50 // described above even if a node added or deleted.
51 template <typename Graph>
55 typedef dim2::Point<double> Value;
56 typedef typename Graph::Node Key;
58 CircleMap(const Graph& _graph,
59 const Value& _center = Value(0.0, 0.0),
61 : descriptor(_graph), center(_center), radius(_radius) {}
63 Value operator[](const Key& key) const {
64 double angle = descriptor[key] * 2 * PI
65 / double(descriptor.inverse().size());
66 double x = std::cos(angle) * radius + center.x;
67 double y = std::sin(angle) * radius + center.y;
73 DescriptorMap<Graph, typename Graph::Node> descriptor;
79 typedef ListGraph Graph;
80 typedef Graph::Node Node;
81 typedef Graph::Edge Edge;
85 std::cout << "Generating graph: " << std::endl;
90 for (int i = 0; i < NODE; ++i) {
94 // Creating descriptor map and inverse
95 DescriptorMap<Graph, Node> nodeDesc(graph);
96 DescriptorMap<Graph, Node>::InverseMap nodeInv(nodeDesc);
99 // The descriptor map always maps an integer value for each node.
100 // The range of the values is always [0..n - 1] where n is the
101 // number of the nodes of the graph. The inverse map gives back the
102 // the node by its descriptor value.
104 // The inversemap cannot works without its DescriptorMap because
105 // it holds reference to it.
106 const int EDGE = int(NODE * std::log(double(NODE)));
107 for (int i = 0; i < EDGE; ++i) {
111 graph.addEdge(nodeInv[si], nodeInv[ti]);
114 GraphWriter<Graph>(std::cout, graph).run();
116 std::cout << std::endl;
117 std::cout << "Postscript file: descriptor_map_demo.eps" << std::endl;
119 // Make postscript from the graph.
121 CircleMap<Graph> coords(graph, dim2::Point<double>(0.0, 0.0), 10.0);
123 graphToEps(graph,"descriptor_map_demo.eps").scaleToA4().
124 title("Generated graph").
125 copyright("(C) 2003-2007 LEMON Project").
128 enableParallel().parEdgeDist(1).
129 drawArrows().arrowWidth(1).arrowLength(1).