1 #ifndef GRAPH_H_INCLUDED 2 #define GRAPH_H_INCLUDED 22 graph(
const std::string &file_name);
58 void DetermineNumberVertices();
60 std::vector<std::array<unsigned int, 2>> _edges;
66 #endif // GRAPH_H_INCLUDED
std::vector< std::vector< unsigned int > > get_node2nodes() const
graph & operator=(graph const &rhs)=default
friend std::ostream & operator<<(std::ostream &s, graph const &rhs)
graph(const std::string &file_name)
Reads edges for graph from file.