hull.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 #include <gecode/set/convex.hh>
00045
00046 namespace Gecode { namespace Set { namespace Convex {
00047
00048 Actor*
00049 ConvexHull::copy(Space& home, bool share) {
00050 return new (home) ConvexHull(home,share,*this);
00051 }
00052
00053 ExecStatus
00054 ConvexHull::propagate(Space& home, const ModEventDelta&) {
00055
00056
00057 GECODE_ME_CHECK( x1.cardMin(home,x0.cardMin()) );
00058 GECODE_ME_CHECK( x0.cardMax(home,x1.cardMax()) );
00059
00060 do {
00061
00062
00063
00064 GECODE_ME_CHECK( x1.exclude(home,Limits::min,
00065 x0.lubMin()-1) );
00066 GECODE_ME_CHECK( x1.exclude(home,x0.lubMax()+1,
00067 Limits::max) );
00068
00069 int minElement = std::min(x1.glbMin(),x0.glbMin());
00070 int maxElement = std::max(x1.glbMax(),x0.glbMax());
00071
00072 if (minElement<maxElement) {
00073 GECODE_ME_CHECK( x1.include(home, minElement, maxElement));
00074 }
00075
00076 unsigned int cardMin = x1.cardMin();
00077
00078 Region r(home);
00079 LubRanges<SetView> ubRangeIt(x1);
00080 Iter::Ranges::Cache ubRangeItC(r,ubRangeIt);
00081 for (;ubRangeItC();++ubRangeItC){
00082 if (ubRangeItC.width() < cardMin
00083 || ubRangeItC.min() > minElement
00084 || ubRangeItC.max() < maxElement
00085 ) {
00086 GECODE_ME_CHECK( x1.exclude(home,
00087 ubRangeItC.min(), ubRangeItC.max()) );
00088 }
00089 }
00090
00091 LubRanges<SetView> ubRangeIt2(x1);
00092 GECODE_ME_CHECK(x0.intersectI(home,ubRangeIt2) );
00093
00094 if (x1.lubMin()!=BndSet::MIN_OF_EMPTY) {
00095 if(x1.lubMin()==x1.glbMin()) {
00096 GECODE_ME_CHECK(x0.include(home,x1.lubMin()));
00097 }
00098 if(x1.lubMax()==x1.glbMax()) {
00099 GECODE_ME_CHECK(x0.include(home,x1.lubMax()));
00100 }
00101 }
00102 } while(x0.assigned()&&!x1.assigned());
00103
00104
00105 assert(x1.assigned() || !x0.assigned());
00106
00107 if (x1.assigned()) {
00108 return home.ES_SUBSUMED(*this);
00109 }
00110
00111 return ES_NOFIX;
00112 }
00113
00114 }}}
00115
00116