lemon/hypercube_graph.h
changeset 2207 75a29ac69c19
parent 2111 ea1fa1bc3f6d
child 2223 590c1b663a27
     1.1 --- a/lemon/hypercube_graph.h	Wed Sep 06 11:39:22 2006 +0000
     1.2 +++ b/lemon/hypercube_graph.h	Thu Sep 07 13:27:16 2006 +0000
     1.3 @@ -275,13 +275,13 @@
     1.4      ///\code
     1.5      /// const int DIM = 3;
     1.6      /// HyperCubeGraph graph(DIM);
     1.7 -    /// xy<double> base[DIM];
     1.8 +    /// dim2::Point<double> base[DIM];
     1.9      /// for (int k = 0; k < DIM; ++k) {
    1.10      ///   base[k].x = rand() / (RAND_MAX + 1.0);
    1.11      ///   base[k].y = rand() / (RAND_MAX + 1.0);
    1.12      /// } 
    1.13 -    /// HyperCubeGraph::HyperMap<xy<double> > 
    1.14 -    ///   pos(graph, base, base + DIM, xy<double>(0.0, 0.0));
    1.15 +    /// HyperCubeGraph::HyperMap<dim2::Point<double> > 
    1.16 +    ///   pos(graph, base, base + DIM, dim2::Point<double>(0.0, 0.0));
    1.17      ///\endcode
    1.18      ///
    1.19      /// \see HyperCubeGraph