Rev | Line | |
---|
[330] | 1 | // -*- c++ -*- |
---|
| 2 | #include <iostream> |
---|
| 3 | #include <fstream> |
---|
| 4 | |
---|
[642] | 5 | #include <sage_graph.h> |
---|
[762] | 6 | #include <for_each_macros.h> |
---|
[330] | 7 | |
---|
| 8 | using namespace hugo; |
---|
| 9 | |
---|
| 10 | int main() |
---|
| 11 | { |
---|
[642] | 12 | typedef SageGraph Graph; |
---|
[330] | 13 | Graph g; |
---|
| 14 | Graph::Node n1=g.addNode(); |
---|
| 15 | Graph::Node n2=g.addNode(); |
---|
| 16 | Graph::NodeIt n; |
---|
[409] | 17 | FOR_EACH_GLOB(n, g) { |
---|
[330] | 18 | std::cout << g.id(n) << " "; |
---|
| 19 | } |
---|
| 20 | std::cout << std::endl; |
---|
| 21 | FOR_EACH_LOC(Graph::NodeIt, m, g) { |
---|
| 22 | std::cout << g.id(m) << " "; |
---|
| 23 | } |
---|
| 24 | std::cout << std::endl; |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | return 0; |
---|
| 28 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.