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.hh"
00039
00040 namespace Gecode { namespace Int {
00041
00042 BoolVarImp BoolVarImp::s_one(1);
00043 BoolVarImp BoolVarImp::s_zero(0);
00044
00045 ModEvent
00046 BoolVarImp::one_none(Space* home) {
00047 assert(none());
00048 bits() ^= (NONE ^ ONE);
00049 assert(one());
00050 IntDelta d(false);
00051 return notify(home,ME_BOOL_VAL,&d);
00052 }
00053
00054 ModEvent
00055 BoolVarImp::zero_none(Space* home) {
00056 assert(none());
00057 bits() ^= (NONE ^ ZERO);
00058 assert(zero());
00059 IntDelta d(false);
00060 return notify(home,ME_BOOL_VAL,&d);
00061 }
00062
00063
00064 Reflection::Arg*
00065 BoolVarImp::spec(const Space*, Reflection::VarMap& m) const {
00066 int specIndex = m.index(this);
00067 if (specIndex != -1)
00068 return Reflection::Arg::newVar(specIndex);
00069 Reflection::VarSpec* spec =
00070 new Reflection::VarSpec(vti, Reflection::Arg::newInt(status()));
00071 return (Reflection::Arg::newVar(m.put(this, spec)));
00072 }
00073
00074
00075 VarImpBase*
00076 BoolVarImp::create(Space* home, Reflection::VarSpec& spec) {
00077 unsigned int dom = spec.dom()->toInt();
00078 int min = 0;
00079 int max = 1;
00080 if (dom == Int::BoolVarImp::ZERO)
00081 max = 0;
00082 else if (dom == Int::BoolVarImp::ONE)
00083 min = 1;
00084 return new (home) BoolVarImp(home, min, max);
00085 }
00086
00087 void
00088 BoolVarImp::constrain(Space* home, VarImpBase* v,
00089 Reflection::VarSpec& spec) {
00090 unsigned int d = spec.dom()->toInt();
00091 if (d == Int::BoolVarImp::ZERO) {
00092 GECODE_ME_FAIL(home, static_cast<Int::BoolVarImp*>(v)->zero(home));
00093 } else if (d == Int::BoolVarImp::ONE) {
00094 GECODE_ME_FAIL(home, static_cast<Int::BoolVarImp*>(v)->one(home));
00095 }
00096 }
00097
00098 namespace {
00099 Reflection::VarImpRegistrar<BoolVarImp> registerBoolVarImp;
00100 }
00101
00102 }}
00103
00104