COIN-OR::LEMON - Graph Library

Changeset 1536:308150155bb5 in lemon-0.x for lemon/maps.h


Ignore:
Timestamp:
07/04/05 18:27:54 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2028
Message:

Kill several doxygen warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/maps.h

    r1531 r1536  
    228228  ///Its \c Value is inherited from \c M.
    229229  ///
    230   ///Actually,
    231   ///\code
    232   ///  ConvertMap<X> sh(x,v);
    233   ///\endcode
    234   ///it is equivalent with
    235   ///\code
    236   ///  ConstMap<X::Key, X::Value> c_tmp(v);
    237   ///  AddMap<X, ConstMap<X::Key, X::Value> > sh(x,v);
    238   ///\endcode
    239230  ///\bug wrong documentation
    240231  template<class M, class T>
     
    253244
    254245    ///Constructor
    255     ///\param _m is the undelying map
    256     ///\param _v is the convert value
     246    ///\param _m is the underlying map
    257247    ConvertMap(const M &_m) : m(_m) {};
    258248
     
    260250    ///
    261251    /// The subscript operator.
    262     /// \param edge The edge
     252    /// \param k The key
    263253    /// \return The target of the edge
    264254    Value operator[](Key k) const {return m[k];}
     
    298288
    299289    ///Constructor
    300 
    301     ///\e
    302     ///
    303290    AddMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
    304291    Value operator[](Key k) const {return m1[k]+m2[k];}
     
    387374
    388375    ///Constructor
    389 
    390     ///\e
    391     ///
    392376    SubMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
    393377    Value operator[](Key k) const {return m1[k]-m2[k];}
     
    427411
    428412    ///Constructor
    429 
    430     ///\e
    431     ///
    432413    MulMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
    433414    Value operator[](Key k) const {return m1[k]*m2[k];}
     
    513494
    514495    ///Constructor
    515 
    516     ///\e
    517     ///
    518496    DivMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
    519497    Value operator[](Key k) const {return m1[k]/m2[k];}
     
    561539
    562540    ///Constructor
    563 
    564     ///\e
    565     ///
    566541    ComposeMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
    567542    Value operator[](Key k) const {return m1[m2[k]];}
     
    616591
    617592    ///Constructor
    618 
    619     ///\e
    620     ///
    621593    CombineMap(const M1 &_m1,const M2 &_m2,const F &_f)
    622594      : m1(_m1), m2(_m2), f(_f) {};
     
    667639
    668640    ///Constructor
    669 
    670     ///\e
    671     ///
    672641    NegMap(const M &_m) : m(_m) {};
    673642    Value operator[](Key k) const {return -m[k];}
     
    721690
    722691    ///Constructor
    723 
    724     ///\e
    725     ///
    726692    AbsMap(const M &_m) : m(_m) {};
    727693    Value operator[](Key k) const {Value tmp=m[k]; return tmp>=0?tmp:-tmp;}
     
    764730
    765731    ///Constructor
    766 
    767     ///\e
    768     ///
    769732    FunctorMap(const F &_f) : f(_f) {};
    770733    Value operator[](Key k) const {return f(k);}
Note: See TracChangeset for help on using the changeset viewer.