Algorithms and Computability Project 0.0.1
Algorithms and Computability Project, we implement graph size, a graph metric, maximum clique search and maximum common subgraph search
|
Graph representation definitions. More...
#include <fstream>
#include <functional>
#include <vector>
Go to the source code of this file.
Classes | |
class | Graph |
Class that represents a graph as a matrix (vector of vectors) of adjacencies. More... | |
Enumerations | |
enum class | AlgorithmAccuracy { APPROXIMATE , EXACT } |
Little enum for choosing between approximate and exact algorithms. | |
Graph representation definitions.