COIN-OR::LEMON - Graph Library

Changeset 1537:0d9f1a71be27 in lemon-0.x


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

Some more doxygen command killed.

Location:
lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/maps.h

    r1536 r1537  
    752752  ///
    753753  ///For the sake of convenience it also works as
    754   ///a ususal \ref concept::ReadMap "readable map", i.e
    755   ///<tt>operator[]</tt> and the \c Key and \c Value typedefs also exist.
     754  ///a ususal \ref concept::ReadMap "readable map",
     755  ///i.e. <tt>operator[]</tt> and the \c Key and \c Value typedefs also exist.
    756756
    757757  template<class M>
     
    772772
    773773    ///Constructor
    774 
    775     ///\e
    776     ///
    777774    MapFunctor(const M &_m) : m(_m) {};
    778775    ///Returns a value of the map
    779    
    780     ///\e
    781     ///
    782776    Value operator()(Key k) const {return m[k];}
    783777    ///\e
    784     ///
    785778    Value operator[](Key k) const {return m[k];}
    786779  };
     
    822815
    823816    ///Constructor
    824 
    825     ///\e
    826     ///
    827817    ForkMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
    828818    Value operator[](Key k) const {return m1[k];}
     
    868858
    869859    ///Constructor
    870 
    871     ///\e
    872     ///
    873860    NotMap(const M &_m) : m(_m) {};
    874861    Value operator[](Key k) const {return !m[k];}
  • lemon/smart_graph.h

    r1457 r1537  
    368368      ///Undo the changes until a snapshot created by save().
    369369      ///
    370       ///\param s an internal stucture given back by save()
    371370      ///\note After you restored a state, you cannot restore
    372371      ///a later state, in other word you cannot add again the edges deleted
Note: See TracChangeset for help on using the changeset viewer.