equal
deleted
inserted
replaced
303 } |
303 } |
304 |
304 |
305 bool valid(EdgeIt e) const { return e.valid(); } |
305 bool valid(EdgeIt e) const { return e.valid(); } |
306 bool valid(NodeIt n) const { return n.valid(); } |
306 bool valid(NodeIt n) const { return n.valid(); } |
307 |
307 |
308 template <typename It> It next(It it) const { |
308 template <typename It> It getNext(It it) const { |
309 It tmp(it); return goNext(tmp); } |
309 It tmp(it); return next(tmp); } |
310 template <typename It> It& goNext(It& it) const { return ++it; } |
310 template <typename It> It& next(It& it) const { return ++it; } |
311 |
311 |
312 |
312 |
313 /* for getting id's of graph objects */ |
313 /* for getting id's of graph objects */ |
314 /* these are important for the implementation of property vectors */ |
314 /* these are important for the implementation of property vectors */ |
315 |
315 |