1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/work/peter/hierarchygraph_test.cc Tue Jun 08 22:38:12 2004 +0000
1.3 @@ -0,0 +1,25 @@
1.4 +#include <string>
1.5 +#include <iostream>
1.6 +#include <stdio.h>
1.7 +
1.8 +#include "hierarchygraph.h"
1.9 +#include <hugo/list_graph.h>
1.10 +#include <hugo/smart_graph.h>
1.11 +#include <path.h>
1.12 +
1.13 +using namespace hugo;
1.14 +using namespace std;
1.15 +
1.16 +bool passed = true;
1.17 +
1.18 +void check(bool rc) {
1.19 + passed = passed && rc;
1.20 + if(!rc) {
1.21 + cout << "Test failed!" << endl;
1.22 + }
1.23 +}
1.24 +
1.25 +int main()
1.26 +{
1.27 + HierarchyGraph<SmartGraph, ListGraph> HGr;
1.28 +}