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
00041
00042
00043
00044 #ifndef __GECODE_SET_PRECEDE_HH__
00045 #define __GECODE_SET_PRECEDE_HH__
00046
00047 #include <gecode/set.hh>
00048
00054 namespace Gecode { namespace Set { namespace Precede {
00055
00066 template<class View>
00067 class Single : public NaryPropagator<View,PC_SET_NONE> {
00068 protected:
00069 using NaryPropagator<View,PC_SET_NONE>::x;
00071 class Index : public Advisor {
00072 public:
00074 int i;
00076 Index(Space& home, Propagator& p, Council<Index>& c, int i);
00078 Index(Space& home, bool share, Index& a);
00079 };
00081 Council<Index> c;
00083 int s, t;
00085 int alpha, beta, gamma;
00087 ExecStatus updateAlpha(Space& home);
00089 ExecStatus updateBeta(Space& home);
00091 Single(Home home, ViewArray<View>& x, int s, int t, int beta, int gamma);
00093 Single(Space& home, bool share, Single<View>& p);
00094 public:
00096 virtual Propagator* copy(Space& home, bool share);
00098 virtual PropCost cost(const Space&, const ModEventDelta&) const;
00100 virtual size_t dispose(Space& home);
00102 virtual ExecStatus advise(Space& home, Advisor& a, const Delta& d);
00104 virtual ExecStatus propagate(Space& home, const ModEventDelta& med);
00106 static ExecStatus post(Home home, ViewArray<View>& x, int s, int t);
00107 };
00108
00109 }}}
00110
00111 #include <gecode/set/precede/single.hpp>
00112
00113 #endif
00114
00115