1 #ifndef GRAPH_H_INCLUDED
2 #define GRAPH_H_INCLUDED
23 graph(
const std::string &file_name);
49 return _vertices.size();
67 void DetermineNumberVertices();
69 std::vector<std::array<unsigned int, 2>> _edges;
70 std::set<unsigned int> _vertices;
77 #endif // GRAPH_H_INCLUDED