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 LubRanges<SetView> ubRangeIt(x1);
00079 Iter::Ranges::Cache< LubRanges<SetView> > ubRangeItC(ubRangeIt);
00080 for (;ubRangeItC();++ubRangeItC){
00081 if (ubRangeItC.width() < cardMin
00082 || ubRangeItC.min() > minElement
00083 || ubRangeItC.max() < maxElement
00084 ) {
00085 GECODE_ME_CHECK( x1.exclude(home,
00086 ubRangeItC.min(), ubRangeItC.max()) );
00087 }
00088 }
00089
00090 LubRanges<SetView> ubRangeIt2(x1);
00091 GECODE_ME_CHECK(x0.intersectI(home,ubRangeIt2) );
00092
00093 if (x1.lubMin()!=BndSet::MIN_OF_EMPTY) {
00094 if(x1.lubMin()==x1.glbMin()) {
00095 GECODE_ME_CHECK(x0.include(home,x1.lubMin()));
00096 }
00097 if(x1.lubMax()==x1.glbMax()) {
00098 GECODE_ME_CHECK(x0.include(home,x1.lubMax()));
00099 }
00100 }
00101 } while(x0.assigned()&&!x1.assigned());
00102
00103
00104 assert(x1.assigned() || !x0.assigned());
00105
00106 if (x1.assigned()) {
00107 return home.ES_SUBSUMED(*this);
00108 }
00109
00110 return ES_NOFIX;
00111 }
00112
00113 }}}
00114
00115