COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/deba/main.cpp @ 472:052af4060f3e

Last change on this file since 472:052af4060f3e was 378:c3f93631cd24, checked in by Balazs Dezso, 20 years ago
File size: 219 bytes
Line 
1#include <iostream>
2#include "test_graph.h"
3
4using namespace std;
5using namespace hugo;
6
7
8int main() {
9        ListGraph g;
10        ListGraph::NodeMap<int> map(g);
11        ListGraph::Node node = g.addNode();
12        map[node] = 12;
13        return 0;
14}
15
Note: See TracBrowser for help on using the repository browser.