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 namespace Gecode { namespace Int { namespace NoOverlap {
00035
00036
00037
00038
00039
00040 template<class Dim, int n>
00041 forceinline const Dim&
00042 ManBox<Dim,n>::operator [](int i) const {
00043 assert((i >= 0) && (i < n));
00044 return d[i];
00045 }
00046 template<class Dim, int n>
00047 forceinline Dim&
00048 ManBox<Dim,n>::operator [](int i) {
00049 assert((i >= 0) && (i < n));
00050 return d[i];
00051 }
00052 template<class Dim, int n>
00053 forceinline int
00054 ManBox<Dim,n>::dim(void) {
00055 return n;
00056 }
00057
00058 template<class Dim, int n>
00059 forceinline bool
00060 ManBox<Dim,n>::mandatory(void) const {
00061 return true;
00062 }
00063 template<class Dim, int n>
00064 forceinline bool
00065 ManBox<Dim,n>::excluded(void) const {
00066 return false;
00067 }
00068 template<class Dim, int n>
00069 forceinline bool
00070 ManBox<Dim,n>::optional(void) const {
00071 return false;
00072 }
00073
00074 template<class Dim, int n>
00075 forceinline ExecStatus
00076 ManBox<Dim,n>::exclude(Space&) {
00077 return ES_FAILED;
00078 }
00079
00080 template<class Dim, int n>
00081 forceinline bool
00082 ManBox<Dim,n>::nooverlap(const ManBox<Dim,n>& box) const {
00083 for (int i=0; i<n; i++)
00084 if ((d[i].lec() <= box.d[i].ssc()) || (box.d[i].lec() <= d[i].ssc()))
00085 return true;
00086 return false;
00087 }
00088
00089 template<class Dim, int n>
00090 forceinline bool
00091 ManBox<Dim,n>::overlap(const ManBox<Dim,n>& box) const {
00092 for (int i=0; i<n; i++)
00093 if ((d[i].sec() <= box.d[i].lsc()) || (box.d[i].sec() <= d[i].lsc()))
00094 return false;
00095 return true;
00096 }
00097
00098 template<class Dim, int n>
00099 forceinline ExecStatus
00100 ManBox<Dim,n>::nooverlap(Space& home, ManBox<Dim,n>& box) {
00101 for (int i=0; i<n; i++)
00102 if ((d[i].sec() <= box.d[i].lsc()) ||
00103 (box.d[i].sec() <= d[i].lsc())) {
00104
00105 for (int j=i+1; j<n; j++)
00106 if ((d[j].sec() <= box.d[j].lsc()) ||
00107 (box.d[j].sec() <= d[j].lsc()))
00108 return ES_OK;
00109
00110 d[i].nooverlap(home, box.d[i]);
00111 box.d[i].nooverlap(home, d[i]);
00112 return ES_OK;
00113 }
00114
00115 return ES_FAILED;
00116 }
00117
00118 template<class Dim, int n>
00119 forceinline void
00120 ManBox<Dim,n>::update(Space& home, ManBox<Dim,n>& b) {
00121 for (int i=0; i<n; i++)
00122 d[i].update(home,b.d[i]);
00123 }
00124
00125 template<class Dim, int n>
00126 forceinline void
00127 ManBox<Dim,n>::subscribe(Space& home, Propagator& p) {
00128 for (int i=0; i<n; i++)
00129 d[i].subscribe(home,p);
00130 }
00131 template<class Dim, int n>
00132 forceinline void
00133 ManBox<Dim,n>::cancel(Space& home, Propagator& p) {
00134 for (int i=0; i<n; i++)
00135 d[i].cancel(home,p);
00136 }
00137 template<class Dim, int n>
00138 forceinline void
00139 ManBox<Dim,n>::reschedule(Space& home, Propagator& p) {
00140 for (int i=0; i<n; i++)
00141 d[i].reschedule(home,p);
00142 }
00143
00144
00145
00146
00147
00148
00149 template<class Dim, int n>
00150 forceinline void
00151 OptBox<Dim,n>::optional(BoolView o0) {
00152 o = o0;
00153 }
00154 template<class Dim, int n>
00155 forceinline bool
00156 OptBox<Dim,n>::mandatory(void) const {
00157 return o.one();
00158 }
00159 template<class Dim, int n>
00160 forceinline bool
00161 OptBox<Dim,n>::excluded(void) const {
00162 return o.zero();
00163 }
00164 template<class Dim, int n>
00165 forceinline bool
00166 OptBox<Dim,n>::optional(void) const {
00167 return o.none();
00168 }
00169
00170 template<class Dim, int n>
00171 forceinline ExecStatus
00172 OptBox<Dim,n>::exclude(Space& home) {
00173 GECODE_ME_CHECK(o.zero(home));
00174 return ES_OK;
00175 }
00176
00177 template<class Dim, int n>
00178 forceinline void
00179 OptBox<Dim,n>::update(Space& home, OptBox<Dim,n>& b) {
00180 ManBox<Dim,n>::update(home, b);
00181 o.update(home, b.o);
00182 }
00183
00184 template<class Dim, int n>
00185 forceinline void
00186 OptBox<Dim,n>::subscribe(Space& home, Propagator& p) {
00187 ManBox<Dim,n>::subscribe(home,p);
00188 o.subscribe(home, p, PC_BOOL_VAL);
00189 }
00190 template<class Dim, int n>
00191 forceinline void
00192 OptBox<Dim,n>::cancel(Space& home, Propagator& p) {
00193 ManBox<Dim,n>::cancel(home,p);
00194 o.cancel(home, p, PC_BOOL_VAL);
00195 }
00196 template<class Dim, int n>
00197 forceinline void
00198 OptBox<Dim,n>::reschedule(Space& home, Propagator& p) {
00199 ManBox<Dim,n>::reschedule(home,p);
00200 o.reschedule(home, p, PC_BOOL_VAL);
00201 }
00202
00203 }}}
00204
00205
00206