lemon/polynomial.h
changeset 2207 75a29ac69c19
parent 2199 1229af45cc69
child 2386 81b47fc5c444
     1.1 --- a/lemon/polynomial.h	Wed Sep 06 11:39:22 2006 +0000
     1.2 +++ b/lemon/polynomial.h	Thu Sep 07 13:27:16 2006 +0000
     1.3 @@ -76,11 +76,11 @@
     1.4      ///The calculation will be done using type \c R.
     1.5      ///The following examples shows the usage of the template parameter \c R.
     1.6      ///\code
     1.7 -    ///  Polynomial<xy<double> > line(1);
     1.8 -    ///  line[0]=xy<double>(12,25);
     1.9 -    ///  line[1]=xy<double>(2,7);
    1.10 +    ///  Polynomial<dim2::Point<double> > line(1);
    1.11 +    ///  line[0]=dim2::Point<double>(12,25);
    1.12 +    ///  line[1]=dim2::Point<double>(2,7);
    1.13      ///  ...
    1.14 -    ///  xy<double> d = line.subst<xy<double> >(23.2);
    1.15 +    ///  dim2::Point<double> d = line.subst<dim2::Point<double> >(23.2);
    1.16      ///\endcode
    1.17      ///
    1.18      ///\code