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 namespace Gecode { namespace Float { namespace Arithmetic {
00035
00036
00037
00038
00039
00040
00041
00042 template<class A, class B>
00043 forceinline
00044 Pow<A,B>::Pow(Home home, A x0, B x1, int n)
00045 : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,x0,x1), m_n(n) {}
00046
00047 template<class A, class B>
00048 ExecStatus
00049 Pow<A,B>::post(Home home, A x0, B x1, int n) {
00050 if (n == 0) {
00051 if ((x0.min() == 0.0) && (x0.max() == 0.0)) return ES_FAILED;
00052 GECODE_ME_CHECK(x1.eq(home,1.0));
00053 return ES_OK;
00054 }
00055
00056 GECODE_ME_CHECK(x1.eq(home,pow(x0.domain(),n)));
00057 if ((x1.min() == 0.0) && (x1.max() == 0.0)) {
00058 GECODE_ME_CHECK(x1.eq(home,0.0));
00059 return ES_OK;
00060 }
00061
00062 if ((n % 2) == 0) {
00063 if (x0.min() >= 0)
00064 GECODE_ME_CHECK(x0.eq(home,nroot(x1.domain(),n)));
00065 else if (x0.max() <= 0)
00066 GECODE_ME_CHECK(x0.eq(home,-nroot(x1.domain(),n)));
00067 else
00068 GECODE_ME_CHECK(x0.eq(home,
00069 hull(
00070 nroot(x1.domain(),n),
00071 -nroot(x1.domain(),n)
00072 )
00073 ));
00074 } else {
00075 GECODE_ME_CHECK(x0.eq(home,nroot(x1.domain(),n)));
00076 }
00077
00078 if (!x0.assigned()) (void) new (home) Pow<A,B>(home,x0,x1,n);
00079 return ES_OK;
00080 }
00081
00082 template<class A, class B>
00083 forceinline
00084 Pow<A,B>::Pow(Space& home, Pow<A,B>& p)
00085 : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,p), m_n(p.m_n) {}
00086
00087 template<class A, class B>
00088 Actor*
00089 Pow<A,B>::copy(Space& home) {
00090 return new (home) Pow<A,B>(home,*this);
00091 }
00092
00093 template<class A, class B>
00094 ExecStatus
00095 Pow<A,B>::propagate(Space& home, const ModEventDelta&) {
00096 if ((x0.min() == 0.0) && (x0.max() == 0.0)) return ES_FAILED;
00097 GECODE_ME_CHECK(x1.eq(home,pow(x0.domain(),m_n)));
00098
00099 if ((x1.min() == 0.0) && (x1.max() == 0.0)) {
00100 GECODE_ME_CHECK(x1.eq(home,0.0));
00101 return home.ES_SUBSUMED(*this);
00102 }
00103
00104 if ((m_n % 2) == 0) {
00105 if (x0.min() >= 0)
00106 GECODE_ME_CHECK(x0.eq(home,nroot(x1.domain(),m_n)));
00107 else if (x0.max() <= 0)
00108 GECODE_ME_CHECK(x0.eq(home,-nroot(x1.domain(),m_n)));
00109 else
00110 GECODE_ME_CHECK(x0.eq(home,
00111 hull(
00112 nroot(x1.domain(),m_n),
00113 -nroot(x1.domain(),m_n)
00114 )
00115 ));
00116 } else {
00117 GECODE_ME_CHECK(x0.eq(home,nroot(x1.domain(),m_n)));
00118 }
00119 return x0.assigned() ? home.ES_SUBSUMED(*this) : ES_FIX;
00120 }
00121
00122
00123
00124
00125
00126
00127 template<class A, class B>
00128 forceinline
00129 NthRoot<A,B>::NthRoot(Home home, A x0, B x1, int n)
00130 : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,x0,x1), m_n(n) {}
00131
00132 template<class A, class B>
00133 ExecStatus
00134 NthRoot<A,B>::post(Home home, A x0, B x1, int n) {
00135 if (n == 0) return ES_FAILED;
00136 GECODE_ME_CHECK(x0.gq(home,0.0));
00137 GECODE_ME_CHECK(x1.eq(home,nroot(x0.domain(),n)));
00138 GECODE_ME_CHECK(x0.eq(home,pow(x1.domain(),n)));
00139 (void) new (home) NthRoot<A,B>(home,x0,x1,n);
00140 return ES_OK;
00141 }
00142
00143 template<class A, class B>
00144 forceinline
00145 NthRoot<A,B>::NthRoot(Space& home, NthRoot<A,B>& p)
00146 : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,p), m_n(p.m_n) {}
00147
00148 template<class A, class B>
00149 Actor*
00150 NthRoot<A,B>::copy(Space& home) {
00151 return new (home) NthRoot<A,B>(home,*this);
00152 }
00153
00154 template<class A, class B>
00155 ExecStatus
00156 NthRoot<A,B>::propagate(Space& home, const ModEventDelta&) {
00157 GECODE_ME_CHECK(x1.eq(home,nroot(x0.domain(),m_n)));
00158 GECODE_ME_CHECK(x0.eq(home,pow(x1.domain(),m_n)));
00159 return x0.assigned() ? home.ES_SUBSUMED(*this) : ES_FIX;
00160 }
00161
00162
00163 }}}
00164
00165
00166