lemon/lp_base.h
changeset 1536 308150155bb5
parent 1508 389a94a1d9eb
child 1542 0219ee65ffcc
     1.1 --- a/lemon/lp_base.h	Mon Jul 04 16:18:11 2005 +0000
     1.2 +++ b/lemon/lp_base.h	Mon Jul 04 16:27:54 2005 +0000
     1.3 @@ -399,8 +399,8 @@
     1.4        ///Reference to the lower bound.
     1.5  
     1.6        ///\return
     1.7 -      ///- -\ref INF: the constraint is lower unbounded.
     1.8 -      ///- -\ref NaN: lower bound has not been set.
     1.9 +      ///- \ref INF "INF": the constraint is lower unbounded.
    1.10 +      ///- \ref NaN "NaN": lower bound has not been set.
    1.11        ///- finite number: the lower bound
    1.12        Value &lowerBound() { return _lb; }
    1.13        ///The const version of \ref lowerBound()
    1.14 @@ -408,8 +408,8 @@
    1.15        ///Reference to the upper bound.
    1.16  
    1.17        ///\return
    1.18 -      ///- -\ref INF: the constraint is upper unbounded.
    1.19 -      ///- -\ref NaN: upper bound has not been set.
    1.20 +      ///- \ref INF "INF": the constraint is upper unbounded.
    1.21 +      ///- \ref NaN "NaN": upper bound has not been set.
    1.22        ///- finite number: the upper bound
    1.23        Value &upperBound() { return _ub; }
    1.24        ///The const version of \ref upperBound()