var-imp.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
00039
00040
00041 #include <cmath>
00042
00043 namespace Gecode { namespace Float {
00044
00045 class FloatVarImp;
00046
00048 class FloatDelta : public Delta {
00049 friend class FloatVarImp;
00050 private:
00051 FloatNum _min;
00052 FloatNum _max;
00053 public:
00055 FloatDelta(void);
00057 FloatDelta(FloatNum min, FloatNum max);
00058 private:
00060 FloatNum min(void) const;
00062 FloatNum max(void) const;
00063 };
00064
00065 }}
00066
00067 #include <gecode/float/var-imp/delta.hpp>
00068
00069 namespace Gecode { namespace Float {
00070
00076 class FloatVarImp : public FloatVarImpBase {
00077 protected:
00079 FloatVal dom;
00081 FloatVarImp(Space& home, FloatVarImp& x);
00082 public:
00084 FloatVarImp(Space& home, const FloatVal& d);
00085
00087
00088
00089 FloatVal domain(void) const;
00091 FloatNum min(void) const;
00093 FloatNum max(void) const;
00095 FloatVal val(void) const;
00097 FloatNum med(void) const;
00098
00100 FloatNum size(void) const;
00102
00104
00105
00106 bool assigned(void) const;
00107
00109 bool zero_in(void) const;
00111 bool in(FloatNum n) const;
00113 bool in(const FloatVal& n) const;
00115
00117
00118
00119 ModEvent eq(Space& home, FloatNum n);
00121 ModEvent eq(Space& home, const FloatVal& n);
00123 ModEvent lq(Space& home, FloatNum n);
00125 ModEvent lq(Space& home, const FloatVal& n);
00127 ModEvent gq(Space& home, FloatNum n);
00129 ModEvent gq(Space& home, const FloatVal& n);
00131
00133
00134
00142 GECODE_FLOAT_EXPORT void subscribe(Space& home, Propagator& p, PropCond pc, bool schedule=true);
00144 GECODE_FLOAT_EXPORT void reschedule(Space& home, Propagator& p, PropCond pc);
00153 GECODE_FLOAT_EXPORT void subscribe(Space& home, Advisor& a, bool fail);
00155
00157
00158
00159 static ModEventDelta med(ModEvent me);
00161
00162
00163 private:
00165 GECODE_FLOAT_EXPORT FloatVarImp* perform_copy(Space& home);
00166 public:
00168
00169
00170 FloatVarImp* copy(Space& home);
00172
00174
00175
00176 static FloatNum min(const Delta& d);
00178 static FloatNum max(const Delta& d);
00180 };
00181
00182 }}
00183
00184 #include <gecode/float/var-imp/float.hpp>
00185
00186
00187