0
4
0
... | ... |
@@ -1732,21 +1732,21 @@ |
1732 | 1732 |
/// functions.\n |
1733 | 1733 |
/// Either \ref run(Node) "run()" or \ref start() should be called |
1734 | 1734 |
/// before using them. |
1735 | 1735 |
|
1736 | 1736 |
///@{ |
1737 | 1737 |
|
1738 | 1738 |
/// \brief Checks if a node is reached from the root(s). |
1739 | 1739 |
/// |
1740 | 1740 |
/// Returns \c true if \c v is reached from the root(s). |
1741 | 1741 |
/// |
1742 | 1742 |
/// \pre Either \ref run(Node) "run()" or \ref init() |
1743 | 1743 |
/// must be called before using this function. |
1744 |
bool reached(Node v) { return (*_reached)[v]; } |
|
1744 |
bool reached(Node v) const { return (*_reached)[v]; } |
|
1745 | 1745 |
|
1746 | 1746 |
///@} |
1747 | 1747 |
|
1748 | 1748 |
}; |
1749 | 1749 |
|
1750 | 1750 |
} //END OF NAMESPACE LEMON |
1751 | 1751 |
|
1752 | 1752 |
#endif |
... | ... |
@@ -410,25 +410,25 @@ |
410 | 410 |
_local_level = false; |
411 | 411 |
} |
412 | 412 |
_level = &elevator; |
413 | 413 |
return *this; |
414 | 414 |
} |
415 | 415 |
|
416 | 416 |
/// \brief Returns a const reference to the elevator. |
417 | 417 |
/// |
418 | 418 |
/// Returns a const reference to the elevator. |
419 | 419 |
/// |
420 | 420 |
/// \pre Either \ref run() or \ref init() must be called before |
421 | 421 |
/// using this function. |
422 |
const Elevator& elevator() { |
|
422 |
const Elevator& elevator() const { |
|
423 | 423 |
return *_level; |
424 | 424 |
} |
425 | 425 |
|
426 | 426 |
/// \brief Sets the tolerance used by algorithm. |
427 | 427 |
/// |
428 | 428 |
/// Sets the tolerance used by algorithm. |
429 | 429 |
Circulation& tolerance(const Tolerance& tolerance) const { |
430 | 430 |
_tol = tolerance; |
431 | 431 |
return *this; |
432 | 432 |
} |
433 | 433 |
|
434 | 434 |
/// \brief Returns a const reference to the tolerance. |
... | ... |
@@ -635,111 +635,111 @@ |
635 | 635 |
/// \pre Either \ref run() or \ref init() must be called before |
636 | 636 |
/// using this function. |
637 | 637 |
Value flow(const Arc& arc) const { |
638 | 638 |
return (*_flow)[arc]; |
639 | 639 |
} |
640 | 640 |
|
641 | 641 |
/// \brief Returns a const reference to the flow map. |
642 | 642 |
/// |
643 | 643 |
/// Returns a const reference to the arc map storing the found flow. |
644 | 644 |
/// |
645 | 645 |
/// \pre Either \ref run() or \ref init() must be called before |
646 | 646 |
/// using this function. |
647 |
const FlowMap& flowMap() { |
|
647 |
const FlowMap& flowMap() const { |
|
648 | 648 |
return *_flow; |
649 | 649 |
} |
650 | 650 |
|
651 | 651 |
/** |
652 | 652 |
\brief Returns \c true if the given node is in a barrier. |
653 | 653 |
|
654 | 654 |
Barrier is a set \e B of nodes for which |
655 | 655 |
|
656 | 656 |
\f[ \sum_{a\in\delta_{out}(B)} upper(a) - |
657 | 657 |
\sum_{a\in\delta_{in}(B)} lower(a) < \sum_{v\in B}delta(v) \f] |
658 | 658 |
|
659 | 659 |
holds. The existence of a set with this property prooves that a |
660 | 660 |
feasible circualtion cannot exist. |
661 | 661 |
|
662 | 662 |
This function returns \c true if the given node is in the found |
663 | 663 |
barrier. If a feasible circulation is found, the function |
664 | 664 |
gives back \c false for every node. |
665 | 665 |
|
666 | 666 |
\pre Either \ref run() or \ref init() must be called before |
667 | 667 |
using this function. |
668 | 668 |
|
669 | 669 |
\sa barrierMap() |
670 | 670 |
\sa checkBarrier() |
671 | 671 |
*/ |
672 |
bool barrier(const Node& node) |
|
672 |
bool barrier(const Node& node) const |
|
673 | 673 |
{ |
674 | 674 |
return (*_level)[node] >= _el; |
675 | 675 |
} |
676 | 676 |
|
677 | 677 |
/// \brief Gives back a barrier. |
678 | 678 |
/// |
679 | 679 |
/// This function sets \c bar to the characteristic vector of the |
680 | 680 |
/// found barrier. \c bar should be a \ref concepts::WriteMap "writable" |
681 | 681 |
/// node map with \c bool (or convertible) value type. |
682 | 682 |
/// |
683 | 683 |
/// If a feasible circulation is found, the function gives back an |
684 | 684 |
/// empty set, so \c bar[v] will be \c false for all nodes \c v. |
685 | 685 |
/// |
686 | 686 |
/// \note This function calls \ref barrier() for each node, |
687 | 687 |
/// so it runs in \f$O(n)\f$ time. |
688 | 688 |
/// |
689 | 689 |
/// \pre Either \ref run() or \ref init() must be called before |
690 | 690 |
/// using this function. |
691 | 691 |
/// |
692 | 692 |
/// \sa barrier() |
693 | 693 |
/// \sa checkBarrier() |
694 | 694 |
template<class BarrierMap> |
695 |
void barrierMap(BarrierMap &bar) |
|
695 |
void barrierMap(BarrierMap &bar) const |
|
696 | 696 |
{ |
697 | 697 |
for(NodeIt n(_g);n!=INVALID;++n) |
698 | 698 |
bar.set(n, (*_level)[n] >= _el); |
699 | 699 |
} |
700 | 700 |
|
701 | 701 |
/// @} |
702 | 702 |
|
703 | 703 |
/// \name Checker Functions |
704 | 704 |
/// The feasibility of the results can be checked using |
705 | 705 |
/// these functions.\n |
706 | 706 |
/// Either \ref run() or \ref start() should be called before |
707 | 707 |
/// using them. |
708 | 708 |
|
709 | 709 |
///@{ |
710 | 710 |
|
711 | 711 |
///Check if the found flow is a feasible circulation |
712 | 712 |
|
713 | 713 |
///Check if the found flow is a feasible circulation, |
714 | 714 |
/// |
715 |
bool checkFlow() { |
|
715 |
bool checkFlow() const { |
|
716 | 716 |
for(ArcIt e(_g);e!=INVALID;++e) |
717 | 717 |
if((*_flow)[e]<(*_lo)[e]||(*_flow)[e]>(*_up)[e]) return false; |
718 | 718 |
for(NodeIt n(_g);n!=INVALID;++n) |
719 | 719 |
{ |
720 | 720 |
Value dif=-(*_delta)[n]; |
721 | 721 |
for(InArcIt e(_g,n);e!=INVALID;++e) dif-=(*_flow)[e]; |
722 | 722 |
for(OutArcIt e(_g,n);e!=INVALID;++e) dif+=(*_flow)[e]; |
723 | 723 |
if(_tol.negative(dif)) return false; |
724 | 724 |
} |
725 | 725 |
return true; |
726 | 726 |
} |
727 | 727 |
|
728 | 728 |
///Check whether or not the last execution provides a barrier |
729 | 729 |
|
730 | 730 |
///Check whether or not the last execution provides a barrier. |
731 | 731 |
///\sa barrier() |
732 | 732 |
///\sa barrierMap() |
733 |
bool checkBarrier() |
|
733 |
bool checkBarrier() const |
|
734 | 734 |
{ |
735 | 735 |
Value delta=0; |
736 | 736 |
for(NodeIt n(_g);n!=INVALID;++n) |
737 | 737 |
if(barrier(n)) |
738 | 738 |
delta-=(*_delta)[n]; |
739 | 739 |
for(ArcIt e(_g);e!=INVALID;++e) |
740 | 740 |
{ |
741 | 741 |
Node s=_g.source(e); |
742 | 742 |
Node t=_g.target(e); |
743 | 743 |
if(barrier(s)&&!barrier(t)) delta+=(*_up)[e]; |
744 | 744 |
else if(barrier(t)&&!barrier(s)) delta-=(*_lo)[e]; |
745 | 745 |
} |
... | ... |
@@ -1616,21 +1616,21 @@ |
1616 | 1616 |
/// functions.\n |
1617 | 1617 |
/// Either \ref run(Node) "run()" or \ref start() should be called |
1618 | 1618 |
/// before using them. |
1619 | 1619 |
|
1620 | 1620 |
///@{ |
1621 | 1621 |
|
1622 | 1622 |
/// \brief Checks if a node is reached from the root(s). |
1623 | 1623 |
/// |
1624 | 1624 |
/// Returns \c true if \c v is reached from the root(s). |
1625 | 1625 |
/// |
1626 | 1626 |
/// \pre Either \ref run(Node) "run()" or \ref init() |
1627 | 1627 |
/// must be called before using this function. |
1628 |
bool reached(Node v) { return (*_reached)[v]; } |
|
1628 |
bool reached(Node v) const { return (*_reached)[v]; } |
|
1629 | 1629 |
|
1630 | 1630 |
///@} |
1631 | 1631 |
|
1632 | 1632 |
}; |
1633 | 1633 |
|
1634 | 1634 |
} //END OF NAMESPACE LEMON |
1635 | 1635 |
|
1636 | 1636 |
#endif |
... | ... |
@@ -357,25 +357,25 @@ |
357 | 357 |
_local_level = false; |
358 | 358 |
} |
359 | 359 |
_level = &elevator; |
360 | 360 |
return *this; |
361 | 361 |
} |
362 | 362 |
|
363 | 363 |
/// \brief Returns a const reference to the elevator. |
364 | 364 |
/// |
365 | 365 |
/// Returns a const reference to the elevator. |
366 | 366 |
/// |
367 | 367 |
/// \pre Either \ref run() or \ref init() must be called before |
368 | 368 |
/// using this function. |
369 |
const Elevator& elevator() { |
|
369 |
const Elevator& elevator() const { |
|
370 | 370 |
return *_level; |
371 | 371 |
} |
372 | 372 |
|
373 | 373 |
/// \brief Sets the tolerance used by algorithm. |
374 | 374 |
/// |
375 | 375 |
/// Sets the tolerance used by algorithm. |
376 | 376 |
Preflow& tolerance(const Tolerance& tolerance) const { |
377 | 377 |
_tolerance = tolerance; |
378 | 378 |
return *this; |
379 | 379 |
} |
380 | 380 |
|
381 | 381 |
/// \brief Returns a const reference to the tolerance. |
... | ... |
@@ -909,25 +909,25 @@ |
909 | 909 |
/// using this function. |
910 | 910 |
Value flow(const Arc& arc) const { |
911 | 911 |
return (*_flow)[arc]; |
912 | 912 |
} |
913 | 913 |
|
914 | 914 |
/// \brief Returns a const reference to the flow map. |
915 | 915 |
/// |
916 | 916 |
/// Returns a const reference to the arc map storing the found flow. |
917 | 917 |
/// This method can be called after the second phase of the algorithm. |
918 | 918 |
/// |
919 | 919 |
/// \pre Either \ref run() or \ref init() must be called before |
920 | 920 |
/// using this function. |
921 |
const FlowMap& flowMap() { |
|
921 |
const FlowMap& flowMap() const { |
|
922 | 922 |
return *_flow; |
923 | 923 |
} |
924 | 924 |
|
925 | 925 |
/// \brief Returns \c true when the node is on the source side of the |
926 | 926 |
/// minimum cut. |
927 | 927 |
/// |
928 | 928 |
/// Returns true when the node is on the source side of the found |
929 | 929 |
/// minimum cut. This method can be called both after running \ref |
930 | 930 |
/// startFirstPhase() and \ref startSecondPhase(). |
931 | 931 |
/// |
932 | 932 |
/// \pre Either \ref run() or \ref init() must be called before |
933 | 933 |
/// using this function. |
0 comments (0 inline)