demo/graph_orientation.cc
changeset 2207 75a29ac69c19
parent 2172 4b25e7003868
child 2310 96cca167430a
     1.1 --- a/demo/graph_orientation.cc	Wed Sep 06 11:39:22 2006 +0000
     1.2 +++ b/demo/graph_orientation.cc	Thu Sep 07 13:27:16 2006 +0000
     1.3 @@ -19,7 +19,7 @@
     1.4  #include <lemon/list_graph.h>
     1.5  #include <lemon/graph_reader.h>
     1.6  #include <lemon/iterable_maps.h>
     1.7 -#include <lemon/xy.h>
     1.8 +#include <lemon/dim2.h>
     1.9  #include <lemon/graph_to_eps.h>
    1.10  
    1.11  
    1.12 @@ -45,7 +45,7 @@
    1.13  
    1.14    ListGraph::NodeMap<int> f(g); //in-deg requirement;
    1.15    ListGraph::NodeMap<int> label(g);
    1.16 -  ListGraph::NodeMap<xy<double> > coords(g);
    1.17 +  ListGraph::NodeMap<dim2::Point<double> > coords(g);
    1.18    
    1.19    try {
    1.20      GraphReader<ListGraph> reader(argv[1],g);