Changeset 1730:fffa6456548a in lemon-0.x
- Timestamp:
- 10/17/05 12:30:59 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2257
- Location:
- lemon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/bits/vector_map.h
r1719 r1730 72 72 /// The value type of the map. 73 73 typedef _Value Value; 74 /// The const reference type of the map.75 typedef typename Container::const_reference ConstReference;76 /// The reference type of the map.77 typedef typename Container::reference Reference;78 79 typedef const Value ConstValue;80 typedef Value* Pointer;81 typedef const Value* ConstPointer;82 74 83 75 typedef AlterationNotifier<_Item> Registry; … … 100 92 typedef typename Container::const_pointer ConstPointer; 101 93 102 typedef True FullTypeTag;103 94 104 95 /// \brief Constructor to attach the new map into the registry. -
lemon/graph_utils.h
r1729 r1730 1327 1327 /// 1328 1328 /// \warning Besides addNode() and addEdge(), a graph structure may provide 1329 /// alternative ways to mo gify the graph. The correct behavior of InDegMap1329 /// alternative ways to modify the graph. The correct behavior of InDegMap 1330 1330 /// is not guarantied if these additional featureas are used. For example 1331 1331 /// the funstions \ref ListGraph::changeSource() "changeSource()", … … 1433 1433 /// 1434 1434 /// \warning Besides addNode() and addEdge(), a graph structure may provide 1435 /// alternative ways to mo gify the graph. The correct behavior of OutDegMap1435 /// alternative ways to modify the graph. The correct behavior of OutDegMap 1436 1436 /// is not guarantied if these additional featureas are used. For example 1437 1437 /// the funstions \ref ListGraph::changeSource() "changeSource()", -
lemon/path.h
r1435 r1730 384 384 //! 385 385 //! \todo Thoroughfully check all the range and consistency tests. 386 /// \todo May we need just path for undirected graph instead of this. 386 387 template<typename Graph> 387 388 class UndirPath {
Note: See TracChangeset
for help on using the changeset viewer.