man.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 namespace Gecode { namespace Int { namespace NoOverlap {
00039
00040 template<class Dim, int d>
00041 forceinline
00042 ManProp<Dim,d>::ManProp(Home home, ManBox<Dim,d>* b, int n)
00043 : Base<ManBox<Dim,d> >(home, b, n) {}
00044
00045 template<class Dim, int d>
00046 inline ExecStatus
00047 ManProp<Dim,d>::post(Home home, ManBox<Dim,d>* b, int n) {
00048 if (n > 1)
00049 (void) new (home) ManProp<Dim,d>(home,b,n);
00050 return ES_OK;
00051 }
00052
00053 template<class Dim, int d>
00054 forceinline size_t
00055 ManProp<Dim,d>::dispose(Space& home) {
00056 (void) Base<ManBox<Dim,d> >::dispose(home);
00057 return sizeof(*this);
00058 }
00059
00060
00061 template<class Dim, int d>
00062 forceinline
00063 ManProp<Dim,d>::ManProp(Space& home, bool shared, ManProp<Dim,d>& p)
00064 : Base<ManBox<Dim,d> >(home, shared, p, p.n) {}
00065
00066 template<class Dim, int d>
00067 Actor*
00068 ManProp<Dim,d>::copy(Space& home, bool share) {
00069 return new (home) ManProp<Dim,d>(home,share,*this);
00070 }
00071
00072 template<class Dim, int d>
00073 ExecStatus
00074 ManProp<Dim,d>::propagate(Space& home, const ModEventDelta&) {
00075 Region r(home);
00076
00077
00078 int* db = r.alloc<int>(n);
00079 for (int i=n; i--; )
00080 db[i] = n-1;
00081
00082
00083 int e = 0;
00084
00085 for (int i=n; i--; )
00086 for (int j=i; j--; )
00087 if (b[i].nooverlap(b[j])) {
00088 assert(db[i] > 0); assert(db[j] > 0);
00089 if (--db[i] == 0) e++;
00090 if (--db[j] == 0) e++;
00091 continue;
00092 } else {
00093 GECODE_ES_CHECK(b[i].nooverlap(home,b[j]));
00094 }
00095
00096 if (e == n)
00097 return home.ES_SUBSUMED(*this);
00098
00099 {
00100 int i = n-1;
00101 while (e > 0) {
00102
00103 while (db[i] > 0)
00104 i--;
00105 b[i].cancel(home, *this);
00106 b[i] = b[--n];
00107 e--; i--;
00108 }
00109 if (n < 2)
00110 return home.ES_SUBSUMED(*this);
00111 }
00112
00113 return ES_NOFIX;
00114 }
00115
00116 }}}
00117
00118
00119