benchmark/graph-bench.cc
changeset 1854 a68d4f93b1fb
parent 1756 b1f441f24d08
child 1855 c72636dcf0bd
equal deleted inserted replaced
1:a0bccc60478c 2:52f07a95eae2
    46 {
    46 {
    47   lemon::Timer T;
    47   lemon::Timer T;
    48   makeFullGraph<ListGraph>(nextPrim(1000),nextPrim(300),nextPrim(100));
    48   makeFullGraph<ListGraph>(nextPrim(1000),nextPrim(300),nextPrim(100));
    49   
    49   
    50   PrintTime("BIG",T);
    50   PrintTime("BIG",T);
    51   T.reset();
    51   T.restart();
    52   makeFullGraph<ListGraph>(nextPrim(100),nextPrim(30000),nextPrim(150));
    52   makeFullGraph<ListGraph>(nextPrim(100),nextPrim(30000),nextPrim(150));
    53 
    53 
    54   PrintTime("SMALL",T);
    54   PrintTime("SMALL",T);
    55 }
    55 }