nosubset.hpp
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 namespace Gecode { namespace Set { namespace Rel {
00043
00044
00045
00046
00047
00048
00049 template<class View0, class View1>
00050 forceinline
00051 NoSubset<View0,View1>::NoSubset(Home home, View0 y0, View1 y1)
00052 : MixBinaryPropagator<View0,PC_SET_CLUB,
00053 View1,PC_SET_CGLB>(home,y0,y1) {}
00054
00055 template<class View0, class View1>
00056 forceinline
00057 NoSubset<View0,View1>::NoSubset(Space& home, bool share,
00058 NoSubset<View0,View1>& p)
00059 : MixBinaryPropagator<View0,PC_SET_CLUB,
00060 View1,PC_SET_CGLB>(home,share,p) {}
00061
00062 template<class View0, class View1>
00063 ExecStatus
00064 NoSubset<View0,View1>::post(Home home, View0 x, View1 y) {
00065 if (me_failed(x.cardMin(home,1)))
00066 return ES_FAILED;
00067 (void) new (home) NoSubset<View0,View1>(home,x,y);
00068 return ES_OK;
00069 }
00070
00071 template<class View0, class View1>
00072 Actor*
00073 NoSubset<View0,View1>::copy(Space& home, bool share) {
00074 return new (home) NoSubset<View0,View1>(home,share,*this);
00075 }
00076
00077 template<class View0, class View1>
00078 ExecStatus
00079 NoSubset<View0,View1>::propagate(Space& home, const ModEventDelta&) {
00080 GlbRanges<View0> x0lb(x0);
00081 LubRanges<View1> x1ub(x1);
00082 if (!Iter::Ranges::subset(x0lb, x1ub))
00083 return home.ES_SUBSUMED(*this);
00084 if (x0.cardMin()>x1.cardMax()) { return home.ES_SUBSUMED(*this); }
00085 LubRanges<View0> x0ub(x0);
00086 GlbRanges<View1> x1lb(x1);
00087 Iter::Ranges::Diff<LubRanges<View0>,GlbRanges<View1> >
00088 breakers(x0ub,x1lb);
00089 if (!breakers()) { return ES_FAILED; }
00090 if (breakers.min() == breakers.max()) {
00091 int b1 = breakers.min();
00092 ++breakers;
00093 if (breakers()) { return ES_FIX; }
00094
00095 GECODE_ME_CHECK( x0.include(home,b1) );
00096 GECODE_ME_CHECK( x1.exclude(home,b1) );
00097 return home.ES_SUBSUMED(*this);
00098 }
00099 return ES_FIX;
00100 }
00101
00102 }}}
00103
00104