pair.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 Element {
00041
00042 forceinline
00043 Pair::Pair(Home home, IntView x0, IntView x1, IntView x2, int w0)
00044 : TernaryPropagator<IntView,PC_INT_DOM>(home,x0,x1,x2), w(w0) {}
00045
00046 inline ExecStatus
00047 Pair::post(Home home, IntView x0, IntView x1, IntView x2,
00048 int w, int h) {
00049 GECODE_ME_CHECK(x0.gq(home,0)); GECODE_ME_CHECK(x0.le(home,w));
00050 GECODE_ME_CHECK(x1.gq(home,0)); GECODE_ME_CHECK(x1.le(home,h));
00051 GECODE_ME_CHECK(x2.gq(home,0)); GECODE_ME_CHECK(x2.le(home,w*h));
00052 if (x0.assigned() && x1.assigned()) {
00053 GECODE_ME_CHECK(x2.eq(home,x0.val()+w*x1.val()));
00054 } else if (x1.assigned()) {
00055 OffsetView x0x1w(x0,x1.val()*w);
00056 return Rel::EqDom<OffsetView,IntView>::post(home,x0x1w,x2);
00057 } else if (x2.assigned()) {
00058 GECODE_ME_CHECK(x0.eq(home,x2.val() % w));
00059 GECODE_ME_CHECK(x1.eq(home,static_cast<int>(x2.val() / w)));
00060 } else {
00061 assert(!shared(x0,x2) && !shared(x1,x2));
00062 (void) new (home) Pair(home,x0,x1,x2,w);
00063 }
00064 return ES_OK;
00065 }
00066
00067 forceinline
00068 Pair::Pair(Space& home, bool share, Pair& p)
00069 : TernaryPropagator<IntView,PC_INT_DOM>(home,share,p), w(p.w) {}
00070
00071 }}}
00072
00073
00074