COIN-OR::LEMON - Graph Library

Changeset 1144:760a5f690163 in lemon-main


Ignore:
Timestamp:
05/15/15 10:15:30 (9 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Minor doc fixes

Location:
lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_base.h

    r1130 r1144  
    197197    /// for(auto c: lp.cols())
    198198    ///   doSomething(c);
     199    ///\endcode
    199200    LemonRangeWrapper1<ColIt, LpBase> cols() {
    200201      return LemonRangeWrapper1<ColIt, LpBase>(*this);
     
    307308    /// for(auto c: lp.rows())
    308309    ///   doSomething(c);
     310    ///\endcode
    309311    LemonRangeWrapper1<RowIt, LpBase> rows() {
    310312      return LemonRangeWrapper1<RowIt, LpBase>(*this);
     
    658660    ///This data structure represents a column of the matrix,
    659661    ///thas is it strores a linear expression of the dual variables
    660     ///(\ref Row "Row"s).
     662    ///(\ref LpBase::Row "Row"s).
    661663    ///
    662664    ///There are several ways to access and modify the contents of this
     
    675677    ///(This code computes the sum of all coefficients).
    676678    ///- Numbers (<tt>double</tt>'s)
    677     ///and variables (\ref Row "Row"s) directly convert to an
     679    ///and variables (\ref LpBase::Row "Row"s) directly convert to an
    678680    ///\ref DualExpr and the usual linear operations are defined, so
    679681    ///\code
     
    11871189    ///\param t can be
    11881190    ///- a standard STL compatible iterable container with
    1189     ///\ref Row as its \c values_type like
     1191    ///\ref LpBase::Row "Row" as its \c values_type like
    11901192    ///\code
    11911193    ///std::vector<LpBase::Row>
     
    11931195    ///\endcode
    11941196    ///- a standard STL compatible iterable container with
    1195     ///\ref Row as its \c mapped_type like
     1197    ///\ref LpBase::Row "Row" as its \c mapped_type like
    11961198    ///\code
    11971199    ///std::map<AnyType,LpBase::Row>
  • lemon/vf2.h

    r1143 r1144  
    426426    ///The mapping type is set to \ref SUBGRAPH by default.
    427427    ///
    428     ///\sa See \ref for the possible values.
     428    ///\sa See \ref Vf2MappingType for the possible values.
    429429    void mappingType(Vf2MappingType m_type) { _mapping_type = m_type; }
    430430
     
    562562    ///the node labels defining equivalence relation between them.
    563563    ///
    564     ///\param m1 It is arbitrary \ref ReadMap "readable node map" of g1.
    565     ///\param m1 It is arbitrary \ref ReadMap "readable node map" of g2.
     564    ///\param m1 It is arbitrary \ref concepts::ReadMap "readable node map"
     565    ///of g1.
     566    ///\param m2 It is arbitrary \ref concepts::ReadMap "readable node map"
     567    ///of g2.
    566568    ///
    567569    ///The value type of these maps must be equal comparable.
     
    581583    ///The mapping type is set to \ref SUBGRAPH by default.
    582584    ///
    583     ///\sa See \ref for the possible values.
     585    ///\sa See \ref Vf2MappingType for the possible values.
    584586    Vf2Wizard<Base> &mappingType(Vf2MappingType m_type)
    585587    {
Note: See TracChangeset for help on using the changeset viewer.