Some demo programs got some interface. Most progress with lp_maxflow_demo.cc, which also got documented.
2 * lemon/full_graph.h - 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
17 #ifndef LEMON_FULL_GRAPH_H
18 #define LEMON_FULL_GRAPH_H
23 #include <lemon/bits/iterable_graph_extender.h>
24 #include <lemon/bits/alteration_notifier.h>
25 #include <lemon/bits/default_map.h>
27 #include <lemon/invalid.h>
28 #include <lemon/utility.h>
33 ///\brief FullGraph and SymFullGraph classes.
43 typedef FullGraphBase Graph;
53 ///Creates a full graph with \c n nodes.
54 void construct(int n) { NodeNum = n; EdgeNum = n * n; }
56 // FullGraphBase(const FullGraphBase &_g)
57 // : NodeNum(_g.nodeNum()), EdgeNum(NodeNum*NodeNum) { }
59 typedef True NodeNumTag;
60 typedef True EdgeNumTag;
63 int nodeNum() const { return NodeNum; }
65 int edgeNum() const { return EdgeNum; }
71 int maxId(Node = INVALID) const { return NodeNum-1; }
76 int maxId(Edge = INVALID) const { return EdgeNum-1; }
78 Node source(Edge e) const { return e.id % NodeNum; }
79 Node target(Edge e) const { return e.id / NodeNum; }
84 /// The ID of a valid Node is a nonnegative integer not greater than
85 /// \ref maxNodeId(). The range of the ID's is not surely continuous
86 /// and the greatest node ID can be actually less then \ref maxNodeId().
88 /// The ID of the \ref INVALID node is -1.
89 ///\return The ID of the node \c v.
91 static int id(Node v) { return v.id; }
94 /// The ID of a valid Edge is a nonnegative integer not greater than
95 /// \ref maxEdgeId(). The range of the ID's is not surely continuous
96 /// and the greatest edge ID can be actually less then \ref maxEdgeId().
98 /// The ID of the \ref INVALID edge is -1.
99 ///\return The ID of the edge \c e.
100 static int id(Edge e) { return e.id; }
102 static Node fromId(int id, Node) { return Node(id);}
104 static Edge fromId(int id, Edge) { return Edge(id);}
106 /// Finds an edge between two nodes.
108 /// Finds an edge from node \c u to node \c v.
110 /// If \c prev is \ref INVALID (this is the default value), then
111 /// It finds the first edge from \c u to \c v. Otherwise it looks for
112 /// the next edge from \c u to \c v after \c prev.
113 /// \return The found edge or INVALID if there is no such an edge.
114 Edge findEdge(Node u,Node v, Edge prev = INVALID)
116 return prev.id == -1 ? Edge(*this, u.id, v.id) : INVALID;
121 friend class FullGraphBase;
125 Node(int _id) { id = _id;}
128 Node (Invalid) { id = -1; }
129 bool operator==(const Node node) const {return id == node.id;}
130 bool operator!=(const Node node) const {return id != node.id;}
131 bool operator<(const Node node) const {return id < node.id;}
137 friend class FullGraphBase;
140 int id; // NodeNum * target + source;
142 Edge(int _id) : id(_id) {}
144 Edge(const FullGraphBase& _graph, int source, int target)
145 : id(_graph.NodeNum * target+source) {}
148 Edge (Invalid) { id = -1; }
149 bool operator==(const Edge edge) const {return id == edge.id;}
150 bool operator!=(const Edge edge) const {return id != edge.id;}
151 bool operator<(const Edge edge) const {return id < edge.id;}
154 void first(Node& node) const {
158 static void next(Node& node) {
162 void first(Edge& edge) const {
166 static void next(Edge& edge) {
170 void firstOut(Edge& edge, const Node& node) const {
171 edge.id = EdgeNum + node.id - NodeNum;
174 void nextOut(Edge& edge) const {
176 if (edge.id < 0) edge.id = -1;
179 void firstIn(Edge& edge, const Node& node) const {
180 edge.id = node.id * NodeNum;
183 void nextIn(Edge& edge) const {
185 if (edge.id % NodeNum == 0) edge.id = -1;
191 typedef AlterableGraphExtender<FullGraphBase> AlterableFullGraphBase;
192 typedef IterableGraphExtender<AlterableFullGraphBase> IterableFullGraphBase;
193 typedef DefaultMappableGraphExtender<IterableFullGraphBase> MappableFullGraphBase;
195 /// \addtogroup graphs
198 ///A full graph class.
200 ///This is a simple and fast directed full graph implementation.
201 ///It is completely static, so you can neither add nor delete either
203 ///Thus it conforms to
204 ///the \ref concept::StaticGraph "StaticGraph" concept
205 ///\sa concept::StaticGraph.
207 ///\author Alpar Juttner
208 class FullGraph : public MappableFullGraphBase {
211 FullGraph(int n) { construct(n); }
216 // Base graph class for UndirFullGraph.
217 class UndirFullGraphBase {
222 typedef UndirFullGraphBase Graph;
229 UndirFullGraphBase() {}
232 ///Creates a full graph with \c n nodes.
233 void construct(int n) { NodeNum = n; EdgeNum = n * (n - 1) / 2; }
235 // FullGraphBase(const FullGraphBase &_g)
236 // : NodeNum(_g.nodeNum()), EdgeNum(NodeNum*NodeNum) { }
238 typedef True NodeNumTag;
239 typedef True EdgeNumTag;
242 int nodeNum() const { return NodeNum; }
244 int edgeNum() const { return EdgeNum; }
250 int maxId(Node = INVALID) const { return NodeNum-1; }
255 int maxId(Edge = INVALID) const { return EdgeNum-1; }
257 Node source(Edge e) const {
258 /// \todo we may do it faster
259 return ((int)sqrt((double)(1 + 8 * e.id)) + 1) / 2;
262 Node target(Edge e) const {
263 int source = ((int)sqrt((double)(1 + 8 * e.id)) + 1) / 2;;
264 return e.id - (source) * (source - 1) / 2;
270 /// The ID of a valid Node is a nonnegative integer not greater than
271 /// \ref maxNodeId(). The range of the ID's is not surely continuous
272 /// and the greatest node ID can be actually less then \ref maxNodeId().
274 /// The ID of the \ref INVALID node is -1.
275 ///\return The ID of the node \c v.
277 static int id(Node v) { return v.id; }
280 /// The ID of a valid Edge is a nonnegative integer not greater than
281 /// \ref maxEdgeId(). The range of the ID's is not surely continuous
282 /// and the greatest edge ID can be actually less then \ref maxEdgeId().
284 /// The ID of the \ref INVALID edge is -1.
285 ///\return The ID of the edge \c e.
286 static int id(Edge e) { return e.id; }
288 /// Finds an edge between two nodes.
290 /// Finds an edge from node \c u to node \c v.
292 /// If \c prev is \ref INVALID (this is the default value), then
293 /// It finds the first edge from \c u to \c v. Otherwise it looks for
294 /// the next edge from \c u to \c v after \c prev.
295 /// \return The found edge or INVALID if there is no such an edge.
296 Edge findEdge(Node u,Node v, Edge prev = INVALID)
298 return prev.id == -1 ? Edge(*this, u.id, v.id) : INVALID;
303 friend class UndirFullGraphBase;
307 Node(int _id) { id = _id;}
310 Node (Invalid) { id = -1; }
311 bool operator==(const Node node) const {return id == node.id;}
312 bool operator!=(const Node node) const {return id != node.id;}
313 bool operator<(const Node node) const {return id < node.id;}
319 friend class UndirFullGraphBase;
322 int id; // NodeNum * target + source;
324 Edge(int _id) : id(_id) {}
326 Edge(const UndirFullGraphBase& _graph, int source, int target)
327 : id(_graph.NodeNum * target+source) {}
330 Edge (Invalid) { id = -1; }
331 bool operator==(const Edge edge) const {return id == edge.id;}
332 bool operator!=(const Edge edge) const {return id != edge.id;}
333 bool operator<(const Edge edge) const {return id < edge.id;}
336 void first(Node& node) const {
340 static void next(Node& node) {
344 void first(Edge& edge) const {
348 static void next(Edge& edge) {
352 void firstOut(Edge& edge, const Node& node) const {
353 edge.id = node.id != 0 ? node.id * (node.id - 1) / 2 : -1;
356 /// \todo with specialized iterators we can make faster iterating
357 void nextOut(Edge& e) const {
358 int source = ((int)sqrt((double)(1 + 8 * e.id)) + 1) / 2;;
359 int target = e.id - (source) * (source - 1) / 2;
361 e.id = target < source ? source * (source - 1) / 2 + target : -1;
364 void firstIn(Edge& edge, const Node& node) const {
365 edge.id = node.id * (node.id + 1) / 2 - 1;
368 void nextIn(Edge& e) const {
369 int source = ((int)sqrt((double)(1 + 8 * e.id)) + 1) / 2;;
370 int target = e.id - (source) * (source - 1) / 2; ++target;
372 e.id = source < NodeNum ? source * (source - 1) / 2 + target : -1;
377 /// \addtogroup graphs
381 /// \todo UndirFullGraph from the UndirFullGraphBase
389 #endif //LEMON_FULL_GRAPH_H