equal
deleted
inserted
replaced
521 ArcIt(Invalid) { } |
521 ArcIt(Invalid) { } |
522 /// Sets the iterator to the first arc. |
522 /// Sets the iterator to the first arc. |
523 |
523 |
524 /// Sets the iterator to the first arc of the given graph. |
524 /// Sets the iterator to the first arc of the given graph. |
525 /// |
525 /// |
526 explicit ArcIt(const BpGraph &g) { ignore_unused_variable_warning(g); } |
526 explicit ArcIt(const BpGraph &g) |
|
527 { |
|
528 ::lemon::ignore_unused_variable_warning(g); |
|
529 } |
527 /// Sets the iterator to the given arc. |
530 /// Sets the iterator to the given arc. |
528 |
531 |
529 /// Sets the iterator to the given arc of the given graph. |
532 /// Sets the iterator to the given arc of the given graph. |
530 /// |
533 /// |
531 ArcIt(const BpGraph&, const Arc&) { } |
534 ArcIt(const BpGraph&, const Arc&) { } |
567 /// Sets the iterator to the first outgoing arc. |
570 /// Sets the iterator to the first outgoing arc. |
568 |
571 |
569 /// Sets the iterator to the first outgoing arc of the given node. |
572 /// Sets the iterator to the first outgoing arc of the given node. |
570 /// |
573 /// |
571 OutArcIt(const BpGraph& n, const Node& g) { |
574 OutArcIt(const BpGraph& n, const Node& g) { |
572 ignore_unused_variable_warning(n); |
575 ::lemon::ignore_unused_variable_warning(n); |
573 ignore_unused_variable_warning(g); |
576 ::lemon::ignore_unused_variable_warning(g); |
574 } |
577 } |
575 /// Sets the iterator to the given arc. |
578 /// Sets the iterator to the given arc. |
576 |
579 |
577 /// Sets the iterator to the given arc of the given graph. |
580 /// Sets the iterator to the given arc of the given graph. |
578 /// |
581 /// |
615 /// Sets the iterator to the first incoming arc. |
618 /// Sets the iterator to the first incoming arc. |
616 |
619 |
617 /// Sets the iterator to the first incoming arc of the given node. |
620 /// Sets the iterator to the first incoming arc of the given node. |
618 /// |
621 /// |
619 InArcIt(const BpGraph& g, const Node& n) { |
622 InArcIt(const BpGraph& g, const Node& n) { |
620 ignore_unused_variable_warning(n); |
623 ::lemon::ignore_unused_variable_warning(n); |
621 ignore_unused_variable_warning(g); |
624 ::lemon::ignore_unused_variable_warning(g); |
622 } |
625 } |
623 /// Sets the iterator to the given arc. |
626 /// Sets the iterator to the given arc. |
624 |
627 |
625 /// Sets the iterator to the given arc of the given graph. |
628 /// Sets the iterator to the given arc of the given graph. |
626 /// |
629 /// |