Added the SimpleController class, and removed the first version of SimAnn in favour of the second.
2 * src/lemon/smart_graph.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Combinatorial Optimization Research Group, 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_SMART_GRAPH_H
18 #define LEMON_SMART_GRAPH_H
22 ///\brief SmartGraph and SymSmartGraph classes.
26 #include <lemon/invalid.h>
28 #include <lemon/erasable_graph_extender.h>
29 #include <lemon/clearable_graph_extender.h>
30 #include <lemon/extendable_graph_extender.h>
32 #include <lemon/idmappable_graph_extender.h>
34 #include <lemon/iterable_graph_extender.h>
36 #include <lemon/alteration_observer_registry.h>
37 #include <lemon/default_map.h>
40 #include <lemon/graph_utils.h>
45 /// \addtogroup graphs
48 class SmartGraphBase {
52 int first_in,first_out;
53 NodeT() : first_in(-1), first_out(-1) {}
57 int head, tail, next_in, next_out;
58 //FIXME: is this necessary?
59 EdgeT() : next_in(-1), next_out(-1) {}
62 std::vector<NodeT> nodes;
64 std::vector<EdgeT> edges;
69 typedef SmartGraphBase Graph;
77 SmartGraphBase() : nodes(), edges() { }
78 SmartGraphBase(const SmartGraphBase &_g) : nodes(_g.nodes), edges(_g.edges) { }
81 int nodeNum() const { return nodes.size(); }
83 int edgeNum() const { return edges.size(); }
89 int maxNodeId() const { return nodes.size()-1; }
94 int maxEdgeId() const { return edges.size()-1; }
96 Node tail(Edge e) const { return edges[e.n].tail; }
97 Node head(Edge e) const { return edges[e.n].head; }
101 /// The ID of a valid Node is a nonnegative integer not greater than
102 /// \ref maxNodeId(). The range of the ID's is not surely continuous
103 /// and the greatest node ID can be actually less then \ref maxNodeId().
105 /// The ID of the \ref INVALID node is -1.
106 ///\return The ID of the node \c v.
107 static int id(Node v) { return v.n; }
110 /// The ID of a valid Edge is a nonnegative integer not greater than
111 /// \ref maxEdgeId(). The range of the ID's is not surely continuous
112 /// and the greatest edge ID can be actually less then \ref maxEdgeId().
114 /// The ID of the \ref INVALID edge is -1.
115 ///\return The ID of the edge \c e.
116 static int id(Edge e) { return e.n; }
119 Node n; n.n=nodes.size();
120 nodes.push_back(NodeT()); //FIXME: Hmmm...
124 Edge addEdge(Node u, Node v) {
125 Edge e; e.n=edges.size(); edges.push_back(EdgeT()); //FIXME: Hmmm...
126 edges[e.n].tail=u.n; edges[e.n].head=v.n;
127 edges[e.n].next_out=nodes[u.n].first_out;
128 edges[e.n].next_in=nodes[v.n].first_in;
129 nodes[u.n].first_out=nodes[v.n].first_in=e.n;
134 /// Finds an edge between two nodes.
136 /// Finds an edge from node \c u to node \c v.
138 /// If \c prev is \ref INVALID (this is the default value), then
139 /// It finds the first edge from \c u to \c v. Otherwise it looks for
140 /// the next edge from \c u to \c v after \c prev.
141 /// \return The found edge or INVALID if there is no such an edge.
142 Edge findEdge(Node u,Node v, Edge prev = INVALID)
144 int e = (prev.n==-1)? nodes[u.n].first_out : edges[prev.n].next_out;
145 while(e!=-1 && edges[e].tail!=v.n) e = edges[e].next_out;
157 friend class SmartGraphBase;
164 Node (Invalid) { n=-1; }
165 bool operator==(const Node i) const {return n==i.n;}
166 bool operator!=(const Node i) const {return n!=i.n;}
167 bool operator<(const Node i) const {return n<i.n;}
172 friend class SmartGraphBase;
179 Edge (Invalid) { n=-1; }
180 bool operator==(const Edge i) const {return n==i.n;}
181 bool operator!=(const Edge i) const {return n!=i.n;}
182 bool operator<(const Edge i) const {return n<i.n;}
185 void first(Node& node) const {
186 node.n = nodes.size() - 1;
189 static void next(Node& node) {
193 void first(Edge& edge) const {
194 edge.n = edges.size() - 1;
197 static void next(Edge& edge) {
201 void firstOut(Edge& edge, const Node& node) const {
202 edge.n = nodes[node.n].first_out;
205 void nextOut(Edge& edge) const {
206 edge.n = edges[edge.n].next_out;
209 void firstIn(Edge& edge, const Node& node) const {
210 edge.n = nodes[node.n].first_in;
213 void nextIn(Edge& edge) const {
214 edge.n = edges[edge.n].next_in;
219 typedef AlterableGraphExtender<SmartGraphBase> AlterableSmartGraphBase;
220 typedef IterableGraphExtender<AlterableSmartGraphBase> IterableSmartGraphBase;
221 typedef IdMappableGraphExtender<IterableSmartGraphBase> IdMappableSmartGraphBase;
222 typedef DefaultMappableGraphExtender<IdMappableSmartGraphBase> MappableSmartGraphBase;
223 typedef ExtendableGraphExtender<MappableSmartGraphBase> ExtendableSmartGraphBase;
224 typedef ClearableGraphExtender<ExtendableSmartGraphBase> ClearableSmartGraphBase;
226 ///A smart graph class.
228 ///This is a simple and fast graph implementation.
229 ///It is also quite memory efficient, but at the price
230 ///that <b> it does not support node and edge deletion</b>.
232 ///the \ref skeleton::ExtendableGraph "ExtendableGraph" concept.
233 ///\sa skeleton::ExtendableGraph.
235 ///\todo Some member functions could be \c static.
237 ///\todo A possibly useful functionality: a function saveState()
238 ///(or snapshot() ) would
239 ///give back a data sturcture X and then the function restoreState(X)
241 ///would remove the nodes and edges added after the call of saveState().
242 ///Of course it should be used as a stack. (Maybe X is not necessary.)
244 ///\author Alpar Juttner
245 class SmartGraph :public ClearableSmartGraphBase { };
248 int countNodes<SmartGraph>(const SmartGraph& graph) {
249 return graph.nodeNum();
253 int countEdges<SmartGraph>(const SmartGraph& graph) {
254 return graph.edgeNum();
263 #endif //LEMON_SMART_GRAPH_H