Regina 7.3 Calculation Engine
|
Represents a graph, which may be directed or undirected. More...
#include <treewidth/treedecomposition.h>
Public Member Functions | |
Graph (size_t order) | |
Constructs a new graph with no arcs. More... | |
~Graph () | |
Destroys this graph. More... | |
void | dump (std::ostream &out) const |
Writes the adjacency matrix of this graph in a compact format to the given output stream. More... | |
Graph (const Graph &)=delete | |
Graph & | operator= (const Graph &)=delete |
Public Attributes | |
size_t | order_ |
The number of nodes in the graph. More... | |
bool ** | adj_ |
The adjacency matrix for the graph. More... | |
Represents a graph, which may be directed or undirected.
This is an internal class, used to convert input graphs into a common format before passing them to the main tree decomposition algorithms.
|
inline |
Constructs a new graph with no arcs.
order | the number of nodes in the new graph. |
|
inline |
Destroys this graph.
void regina::TreeDecomposition::Graph::dump | ( | std::ostream & | out | ) | const |
Writes the adjacency matrix of this graph in a compact format to the given output stream.
The output will be formatted as a matrix, and will be spread across multiple lines.
out | the output stream to which to write. |
bool** regina::TreeDecomposition::Graph::adj_ |
The adjacency matrix for the graph.
Specifically, adj_[i][j] is true
if and only if there is an arc from node i to node j.
size_t regina::TreeDecomposition::Graph::order_ |
The number of nodes in the graph.