2 * src/lemon/full_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_FULL_GRAPH_H
18 #define LEMON_FULL_GRAPH_H
21 #include <lemon/idmappable_graph_extender.h>
23 #include <lemon/iterable_graph_extender.h>
25 #include <lemon/alteration_observer_registry.h>
26 #include <lemon/default_map.h>
30 ///\brief FullGraph and SymFullGraph classes.
33 #include <lemon/invalid.h>
37 /// \addtogroup graphs
45 typedef FullGraphBase Graph;
55 ///Creates a full graph with \c n nodes.
56 void construct(int n) { NodeNum = n; EdgeNum = n * n; }
58 // FullGraphBase(const FullGraphBase &_g)
59 // : NodeNum(_g.nodeNum()), EdgeNum(NodeNum*NodeNum) { }
62 int nodeNum() const { return NodeNum; }
64 int edgeNum() const { return EdgeNum; }
70 int maxNodeId() const { return NodeNum-1; }
75 int maxEdgeId() const { return EdgeNum-1; }
77 Node tail(Edge e) const { return e.id % NodeNum; }
78 Node head(Edge e) const { return e.id / NodeNum; }
83 /// The ID of a valid Node is a nonnegative integer not greater than
84 /// \ref maxNodeId(). The range of the ID's is not surely continuous
85 /// and the greatest node ID can be actually less then \ref maxNodeId().
87 /// The ID of the \ref INVALID node is -1.
88 ///\return The ID of the node \c v.
90 static int id(Node v) { return v.id; }
93 /// The ID of a valid Edge is a nonnegative integer not greater than
94 /// \ref maxEdgeId(). The range of the ID's is not surely continuous
95 /// and the greatest edge ID can be actually less then \ref maxEdgeId().
97 /// The ID of the \ref INVALID edge is -1.
98 ///\return The ID of the edge \c e.
99 static int id(Edge e) { return e.id; }
101 /// Finds an edge between two nodes.
103 /// Finds an edge from node \c u to node \c v.
105 /// If \c prev is \ref INVALID (this is the default value), then
106 /// It finds the first edge from \c u to \c v. Otherwise it looks for
107 /// the next edge from \c u to \c v after \c prev.
108 /// \return The found edge or INVALID if there is no such an edge.
109 Edge findEdge(Node u,Node v, Edge prev = INVALID)
111 return prev.id == -1 ? Edge(*this, u.id, v.id) : INVALID;
116 friend class FullGraphBase;
120 Node(int _id) { id = _id;}
123 Node (Invalid) { id = -1; }
124 bool operator==(const Node node) const {return id == node.id;}
125 bool operator!=(const Node node) const {return id != node.id;}
126 bool operator<(const Node node) const {return id < node.id;}
132 friend class FullGraphBase;
135 int id; // NodeNum * head + tail;
137 Edge(int _id) : id(_id) {}
139 Edge(const FullGraphBase& _graph, int tail, int head)
140 : id(_graph.NodeNum * head+tail) {}
143 Edge (Invalid) { id = -1; }
144 bool operator==(const Edge edge) const {return id == edge.id;}
145 bool operator!=(const Edge edge) const {return id != edge.id;}
146 bool operator<(const Edge edge) const {return id < edge.id;}
149 void first(Node& node) const {
153 static void next(Node& node) {
157 void first(Edge& edge) const {
161 static void next(Edge& edge) {
165 void firstOut(Edge& edge, const Node& node) const {
166 edge.id = EdgeNum + node.id - NodeNum;
169 void nextOut(Edge& edge) const {
171 if (edge.id < 0) edge.id = -1;
174 void firstIn(Edge& edge, const Node& node) const {
175 edge.id = node.id * NodeNum;
178 void nextIn(Edge& edge) const {
180 if (edge.id % NodeNum == 0) edge.id = -1;
186 typedef AlterableGraphExtender<FullGraphBase> AlterableFullGraphBase;
187 typedef IterableGraphExtender<AlterableFullGraphBase> IterableFullGraphBase;
188 typedef IdMappableGraphExtender<IterableFullGraphBase> IdMappableFullGraphBase;
189 typedef DefaultMappableGraphExtender<IdMappableFullGraphBase> MappableFullGraphBase;
191 ///A full graph class.
193 ///This is a simple and fast directed full graph implementation.
194 ///It is completely static, so you can neither add nor delete either
196 ///Thus it conforms to
197 ///the \ref skeleton::StaticGraph "StaticGraph" concept
198 ///\sa skeleton::StaticGraph.
199 ///\todo What about loops?
200 ///\todo Don't we need SymEdgeMap?
202 ///\author Alpar Juttner
203 class FullGraph : public MappableFullGraphBase {
206 FullGraph(int n) { construct(n); }
210 int countNodes<FullGraph>(const FullGraph& graph) {
211 return graph.nodeNum();
215 int countEdges<FullGraph>(const FullGraph& graph) {
216 return graph.edgeNum();
226 #endif //LEMON_FULL_GRAPH_H