Changeset 320:190ecba15b33 in lemon-0.x for src
- Timestamp:
- 04/14/04 13:48:46 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@438
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/include/skeletons/graph.h
r298 r320 32 32 { 33 33 public: 34 34 /// Defalult constructor. 35 GraphSkeleton() {} 36 ///Copy consructor. 37 GraphSkeleton(const GraphSkeleton &G) {} 38 35 39 /// The base type of the node iterators. 36 40 … … 220 224 ///\todo Maybe, it would be better if iterator converted to 221 225 ///bool directly, as Jacint prefers. 222 bool valid(const Node ) const { return true;}226 bool valid(const Node&) const { return true;} 223 227 /// Checks if an edge iterator is valid 224 228 225 229 ///\todo Maybe, it would be better if iterator converted to 226 230 ///bool directly, as Jacint prefers. 227 bool valid(const Edge ) const { return true;}231 bool valid(const Edge&) const { return true;} 228 232 229 233 ///Gives back the \e id of a node. … … 231 235 ///\warning Not all graph structures provide this feature. 232 236 /// 233 int id(const Node ) const { return 0;}237 int id(const Node&) const { return 0;} 234 238 ///Gives back the \e id of an edge. 235 239 236 240 ///\warning Not all graph structures provide this feature. 237 241 /// 238 int id(const Edge ) const { return 0;}242 int id(const Edge&) const { return 0;} 239 243 240 244 //void setInvalid(Node &) const {}; … … 261 265 int nodeNum() const { return 0;} 262 266 int edgeNum() const { return 0;} 263 264 /// Defalult constructor.265 GraphSkeleton() {}266 ///Copy consructor.267 GraphSkeleton(const GraphSkeleton &G) {}268 269 270 267 271 268 ///Read/write/reference map of the nodes to type \c T.
Note: See TracChangeset
for help on using the changeset viewer.