man-prop.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 Unary {
00039
00040 template<class ManTask>
00041 forceinline
00042 ManProp<ManTask>::ManProp(Home home, TaskArray<ManTask>& t)
00043 : TaskProp<ManTask,Int::PC_INT_BND>(home,t) {}
00044
00045 template<class ManTask>
00046 forceinline
00047 ManProp<ManTask>::ManProp(Space& home, bool shared,
00048 ManProp<ManTask>& p)
00049 : TaskProp<ManTask,Int::PC_INT_BND>(home,shared,p) {}
00050
00051 template<class ManTask>
00052 forceinline ExecStatus
00053 ManProp<ManTask>::post(Home home, TaskArray<ManTask>& t) {
00054 if (t.size() > 1)
00055 (void) new (home) ManProp<ManTask>(home,t);
00056 return ES_OK;
00057 }
00058
00059 template<class ManTask>
00060 Actor*
00061 ManProp<ManTask>::copy(Space& home, bool share) {
00062 return new (home) ManProp<ManTask>(home,share,*this);
00063 }
00064
00065 template<class ManTask>
00066 ExecStatus
00067 ManProp<ManTask>::propagate(Space& home, const ModEventDelta&) {
00068 GECODE_ES_CHECK(overload(home,t));
00069 GECODE_ES_CHECK(detectable(home,t));
00070 GECODE_ES_CHECK(notfirstnotlast(home,t));
00071 GECODE_ES_CHECK(edgefinding(home,t));
00072 GECODE_ES_CHECK(subsumed(home,*this,t));
00073 return ES_NOFIX;
00074 }
00075
00076 }}}
00077
00078