Changeset 55:75ed9549d34d in lemon-0.x for src/work/alpar
- Timestamp:
- 02/03/04 14:41:46 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@70
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/alpar/emptygraph.h
r54 r55 31 31 EachEdgeIt &goNext(const EachEdgeIt &); 32 32 33 bool valid(const NodeIt &n); 34 bool valid(const EdgeIt &n); 33 NodeIt head(const EdgeIt &); 34 NodeIt tail(const EdgeIt &); 35 36 NodeIt aNode(const InEdgeIt &); 37 NodeIt aNode(const OutEdgeIt &); 38 NodeIt aNode(const SymEdgeIt &); 35 39 36 void setInvalid(const NodeIt &n); 37 void setInvalid(const EdgeIt &n); 40 NodeIt bNode(const InEdgeIt &); 41 NodeIt bNode(const OutEdgeIt &); 42 NodeIt bNode(const SymEdgeIt &); 43 44 bool valid(const NodeIt &); 45 bool valid(const EdgeIt &); 46 47 void setInvalid(const NodeIt &); 48 void setInvalid(const EdgeIt &); 38 49 39 50 NodeIt addNode();
Note: See TracChangeset
for help on using the changeset viewer.