Declaration of graph generators. More...
#include <ogdf/basic/Graph.h>#include <ogdf/cluster/ClusterGraph.h>Go to the source code of this file.
Namespaces | |
| namespace | ogdf |
The namespace for all OGDF objects. | |
Functions | |
| void | ogdf::randomGraph (Graph &G, int n, int m) |
| Creates a random graph. | |
| bool | ogdf::randomSimpleGraph (Graph &G, int n, int m) |
| Creates a random simple graph. | |
| void | ogdf::randomBiconnectedGraph (Graph &G, int n, int m) |
| Creates a random biconnected graph. | |
| void | ogdf::planarBiconnectedGraph (Graph &G, int n, int m, bool multiEdges=false) |
| Creates a planar biconnected (embedded) graph. | |
| void | ogdf::planarCNBGraph (Graph &G, int n, int m, int b) |
| Creates a planar graph, that is connected, but not biconnected. | |
| void | ogdf::randomTriconnectedGraph (Graph &G, int n, double p1, double p2) |
| Creates a random triconnected (and simple) graph. | |
| void | ogdf::planarTriconnectedGraph (Graph &G, int n, int m) |
| Creates a planar triconnected (and simple) graph. | |
| void | ogdf::planarTriconnectedGraph (Graph &G, int n, double p1, double p2) |
| Creates a planar triconnected (and simple) graph. | |
| void | ogdf::randomTree (Graph &G, int n, int maxDeg, int maxWidth) |
| Creates a random tree. | |
| void | ogdf::randomHierarchy (Graph &G, int n, int m, bool planar, bool singleSource, bool longEdges) |
| Creates a random hierarchical graph. | |
| void | ogdf::randomClusterPlanarGraph (ClusterGraph &C, Graph &G, int cNum) |
| Assigns random clusters to a given graph G. | |
| void | ogdf::randomClusterGraph (ClusterGraph &C, Graph &G, int cNum) |
| Assigns random clusters to a given graph G. | |
| void | ogdf::completeGraph (Graph &G, int n) |
Creates the complete graph . | |
| void | ogdf::completeBipartiteGraph (Graph &G, int n, int m) |
Creates t complete bipartite graph . | |
| void | ogdf::wheelGraph (Graph &G, int n) |
Creates the graph : A wheel graph. | |
| void | ogdf::cubeGraph (Graph &G, int n) |
Creates the graph : A n-cube graph. | |
| void | ogdf::suspension (Graph &G, int s) |
| Modifies G by adding its n-th suspension. | |
| void | ogdf::randomDiGraph (Graph &G, int n, double p) |
| Creates a random (simple) directed graph. | |
Declaration of graph generators.
Copyright (C). All rights reserved. See README.txt in the root directory of the OGDF installation for details.
Definition in file graph_generators.h.