src/work/marci/bfsit_vs_byhand.cc
changeset 921 818510fa3d99
parent 777 a82713ed19f3
child 944 4f064aff855e
equal deleted inserted replaced
11:54e8d6e1b448 12:31da7ae5f126
     1 // -*- c++ -*-
     1 // -*- c++ -*-
     2 #include <iostream>
     2 #include <iostream>
     3 #include <fstream>
     3 #include <fstream>
     4 
     4 
     5 #include <sage_graph.h>
     5 #include <sage_graph.h>
     6 #include <hugo/smart_graph.h>
     6 #include <lemon/smart_graph.h>
     7 #include <hugo/dimacs.h>
     7 #include <lemon/dimacs.h>
     8 #include <hugo/time_measure.h>
     8 #include <lemon/time_measure.h>
     9 //#include <hugo/for_each_macros.h>
     9 //#include <lemon/for_each_macros.h>
    10 #include <bfs_dfs.h>
    10 #include <bfs_dfs.h>
    11 
    11 
    12 using namespace hugo;
    12 using namespace lemon;
    13 
    13 
    14 using std::cout;
    14 using std::cout;
    15 using std::endl;
    15 using std::endl;
    16 
    16 
    17 int main() {
    17 int main() {