lemon/lp_base.h
changeset 1353 760a5f690163
parent 1336 0759d974de81
     1.1 --- a/lemon/lp_base.h	Thu May 14 17:13:44 2015 +0200
     1.2 +++ b/lemon/lp_base.h	Fri May 15 10:15:30 2015 +0200
     1.3 @@ -196,6 +196,7 @@
     1.4      ///\code
     1.5      /// for(auto c: lp.cols())
     1.6      ///   doSomething(c);
     1.7 +    ///\endcode
     1.8      LemonRangeWrapper1<ColIt, LpBase> cols() {
     1.9        return LemonRangeWrapper1<ColIt, LpBase>(*this);
    1.10      }
    1.11 @@ -306,6 +307,7 @@
    1.12      ///\code
    1.13      /// for(auto c: lp.rows())
    1.14      ///   doSomething(c);
    1.15 +    ///\endcode
    1.16      LemonRangeWrapper1<RowIt, LpBase> rows() {
    1.17        return LemonRangeWrapper1<RowIt, LpBase>(*this);
    1.18      }
    1.19 @@ -657,7 +659,7 @@
    1.20  
    1.21      ///This data structure represents a column of the matrix,
    1.22      ///thas is it strores a linear expression of the dual variables
    1.23 -    ///(\ref Row "Row"s).
    1.24 +    ///(\ref LpBase::Row "Row"s).
    1.25      ///
    1.26      ///There are several ways to access and modify the contents of this
    1.27      ///container.
    1.28 @@ -674,7 +676,7 @@
    1.29      ///\endcode
    1.30      ///(This code computes the sum of all coefficients).
    1.31      ///- Numbers (<tt>double</tt>'s)
    1.32 -    ///and variables (\ref Row "Row"s) directly convert to an
    1.33 +    ///and variables (\ref LpBase::Row "Row"s) directly convert to an
    1.34      ///\ref DualExpr and the usual linear operations are defined, so
    1.35      ///\code
    1.36      ///v+w
    1.37 @@ -1186,13 +1188,13 @@
    1.38      ///its elements with new row (i.e. variables)
    1.39      ///\param t can be
    1.40      ///- a standard STL compatible iterable container with
    1.41 -    ///\ref Row as its \c values_type like
    1.42 +    ///\ref LpBase::Row "Row" as its \c values_type like
    1.43      ///\code
    1.44      ///std::vector<LpBase::Row>
    1.45      ///std::list<LpBase::Row>
    1.46      ///\endcode
    1.47      ///- a standard STL compatible iterable container with
    1.48 -    ///\ref Row as its \c mapped_type like
    1.49 +    ///\ref LpBase::Row "Row" as its \c mapped_type like
    1.50      ///\code
    1.51      ///std::map<AnyType,LpBase::Row>
    1.52      ///\endcode