src/work/peter/hierarchygraph_test.cc
changeset 683 3cbf51510180
child 690 a0f95e1b17fc
equal deleted inserted replaced
-1:000000000000 0:6af1157d8fcb
       
     1 #include <string>
       
     2 #include <iostream>
       
     3 #include <stdio.h>
       
     4 
       
     5 #include "hierarchygraph.h"
       
     6 #include <hugo/list_graph.h>
       
     7 #include <hugo/smart_graph.h>
       
     8 #include <path.h>
       
     9 
       
    10 using namespace hugo;
       
    11 using namespace std;
       
    12 
       
    13 bool passed = true;
       
    14 
       
    15 void check(bool rc) {
       
    16   passed = passed && rc;
       
    17   if(!rc) {
       
    18     cout << "Test failed!" << endl;
       
    19   }
       
    20 }
       
    21 
       
    22 int main()
       
    23 {
       
    24   HierarchyGraph<SmartGraph, ListGraph> HGr;
       
    25 }