precede.hh
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
00039
00040 #ifndef __GECODE_SET_PRECEDE_HH__
00041 #define __GECODE_SET_PRECEDE_HH__
00042
00043 #include <gecode/set.hh>
00044
00050 namespace Gecode { namespace Set { namespace Precede {
00051
00062 template<class View>
00063 class Single : public NaryPropagator<View,PC_SET_NONE> {
00064 protected:
00065 using NaryPropagator<View,PC_SET_NONE>::x;
00067 class Index : public Advisor {
00068 public:
00070 int i;
00072 Index(Space& home, Propagator& p, Council<Index>& c, int i);
00074 Index(Space& home, Index& a);
00075 };
00077 Council<Index> c;
00079 int s, t;
00081 int alpha, beta, gamma;
00083 ExecStatus updateAlpha(Space& home);
00085 ExecStatus updateBeta(Space& home);
00087 Single(Home home, ViewArray<View>& x, int s, int t, int beta, int gamma);
00089 Single(Space& home, Single<View>& p);
00090 public:
00092 virtual Propagator* copy(Space& home);
00094 virtual PropCost cost(const Space&, const ModEventDelta&) const;
00096 virtual void reschedule(Space& home);
00098 virtual size_t dispose(Space& home);
00100 virtual ExecStatus advise(Space& home, Advisor& a, const Delta& d);
00102 virtual ExecStatus propagate(Space& home, const ModEventDelta& med);
00104 static ExecStatus post(Home home, ViewArray<View>& x, int s, int t);
00105 };
00106
00107 }}}
00108
00109 #include <gecode/set/precede/single.hpp>
00110
00111 #endif
00112
00113