COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/peter/hierarchygraph_test.cc @ 677:af3b5c85a227

Last change on this file since 677:af3b5c85a227 was 677:af3b5c85a227, checked in by Hegyi Péter, 20 years ago

NetGraphs? v0

File size: 391 bytes
Line 
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
10using namespace hugo;
11using namespace std;
12
13bool passed = true;
14
15void check(bool rc) {
16  passed = passed && rc;
17  if(!rc) {
18    cout << "Test failed!" << endl;
19  }
20}
21
22int main()
23{
24  HierarchyGraph<SmartGraph, ListGraph> HGr;
25}
Note: See TracBrowser for help on using the repository browser.