bool-gq.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 #include <gecode/int/rel.hh>
00039
00040 namespace Gecode { namespace Int { namespace NValues {
00041
00042 template<class VY>
00043 forceinline
00044 GqBool<VY>::GqBool(Home home, int status, ViewArray<BoolView>& x, VY y)
00045 : BoolBase<VY>(home,status,x,y) {}
00046
00047 template<class VY>
00048 forceinline
00049 GqBool<VY>::GqBool(Space& home, bool share, GqBool<VY>& p)
00050 : BoolBase<VY>(home,share,p) {}
00051
00052 template<class VY>
00053 Actor*
00054 GqBool<VY>::copy(Space& home, bool share) {
00055 return new (home) GqBool<VY>(home,share,*this);
00056 }
00057
00058 template<class VY>
00059 inline ExecStatus
00060 GqBool<VY>::post(Home home, ViewArray<BoolView>& x, VY y) {
00061 if (x.size() == 0) {
00062 GECODE_ME_CHECK(y.lq(home,0));
00063 return ES_OK;
00064 }
00065
00066 x.unique(home);
00067
00068 if (x.size() == 1) {
00069 GECODE_ME_CHECK(y.lq(home,1));
00070 return ES_OK;
00071 }
00072
00073 GECODE_ME_CHECK(y.lq(home,2));
00074
00075 if (y.max() <= 1)
00076 return ES_OK;
00077
00078 if (y.min() == 2) {
00079 assert(y.assigned());
00080 ViewArray<BoolView> xc(home,x);
00081 return Rel::NaryNq<BoolView>::post(home,xc);
00082 }
00083
00084 int n = x.size();
00085 int status = 0;
00086 for (int i=n; i--; )
00087 if (x[i].zero()) {
00088 if (status & VS_ONE)
00089 return ES_OK;
00090 x[i] = x[--n];
00091 status |= VS_ZERO;
00092 } else if (x[i].one()) {
00093 if (status & VS_ZERO)
00094 return ES_OK;
00095 x[i] = x[--n];
00096 status |= VS_ONE;
00097 }
00098
00099 assert(status != (VS_ZERO | VS_ONE));
00100 if (n == 0) {
00101 assert(status != 0);
00102 GECODE_ME_CHECK(y.lq(home,1));
00103 return ES_OK;
00104 }
00105 x.size(n);
00106
00107 (void) new (home) GqBool<VY>(home,status,x,y);
00108 return ES_OK;
00109 }
00110
00111 template<class VY>
00112 ExecStatus
00113 GqBool<VY>::propagate(Space& home, const ModEventDelta&) {
00114 if (status == (VS_ZERO | VS_ONE))
00115 return home.ES_SUBSUMED(*this);
00116
00117 if (c.empty()) {
00118 assert(status != 0);
00119 GECODE_ME_CHECK(y.lq(home,1));
00120 return home.ES_SUBSUMED(*this);
00121 }
00122
00123 if (y.max() <= 1)
00124 return home.ES_SUBSUMED(*this);
00125
00126 if (y.min() == 2) {
00127 Advisors<ViewAdvisor<BoolView> > as(c);
00128 assert(as());
00129 ViewAdvisor<BoolView>& a(as.advisor());
00130 ++as;
00131 if (!as()) {
00132
00133 if (status == VS_ZERO) {
00134 GECODE_ME_CHECK(a.view().one(home));
00135 } else if (status == VS_ONE) {
00136 GECODE_ME_CHECK(a.view().zero(home));
00137 } else {
00138 return ES_FAILED;
00139 }
00140 return home.ES_SUBSUMED(*this);
00141 }
00142 }
00143
00144 return ES_FIX;
00145 }
00146
00147 }}}
00148
00149