COIN-OR::LEMON - Graph Library

Changeset 2207:75a29ac69c19 in lemon-0.x for lemon/hypercube_graph.h


Ignore:
Timestamp:
09/07/06 15:27:16 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2933
Message:

xy -> dim2::Point

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/hypercube_graph.h

    r2111 r2207  
    276276    /// const int DIM = 3;
    277277    /// HyperCubeGraph graph(DIM);
    278     /// xy<double> base[DIM];
     278    /// dim2::Point<double> base[DIM];
    279279    /// for (int k = 0; k < DIM; ++k) {
    280280    ///   base[k].x = rand() / (RAND_MAX + 1.0);
    281281    ///   base[k].y = rand() / (RAND_MAX + 1.0);
    282282    /// }
    283     /// HyperCubeGraph::HyperMap<xy<double> >
    284     ///   pos(graph, base, base + DIM, xy<double>(0.0, 0.0));
     283    /// HyperCubeGraph::HyperMap<dim2::Point<double> >
     284    ///   pos(graph, base, base + DIM, dim2::Point<double>(0.0, 0.0));
    285285    ///\endcode
    286286    ///
Note: See TracChangeset for help on using the changeset viewer.