#include "graph.h"
#include <array>
#include <iostream>
#include <string>
#include <vector>
Go to the source code of this file.
Definition at line 9 of file main.cpp.
11 cout <<
"Hello Graph!" << endl;
12 const graph g1{
"g_2.txt"};
19 cout <<
"\n -- Nodes to Node --\n";
20 for (
size_t k=0; k<n2n.size(); ++k)
23 for (
size_t j=0; j<n2n[k].size(); ++j)
25 cout << n2n[k].at(j) <<
" ";
std::vector< std::vector< unsigned int > > get_node2nodes() const