Graph-construction helpers such as complete, path, and Erdos-Renyi graphs.
More...
#include "graph.hpp"
#include <random>
Go to the source code of this file.
|
template<typename GraphType = Graph<int>>
requires NumericNodeID<typename GraphType::NodeType> |
| GraphType | nxpp::complete_graph (size_t n) |
| |
template<typename GraphType = Graph<int>>
requires NumericNodeID<typename GraphType::NodeType> |
| GraphType | nxpp::path_graph (size_t n) |
| |
template<typename GraphType = Graph<int>>
requires NumericNodeID<typename GraphType::NodeType> |
| GraphType | nxpp::erdos_renyi_graph (size_t n, double p, int seed=42) |
| |
Graph-construction helpers such as complete, path, and Erdos-Renyi graphs.