/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2008 * * Last modified: * $Date: 2008-07-11 10:49:55 +0200 (Fri, 11 Jul 2008) $ by $Author: tack $ * $Revision: 7348 $ * * This file is part of Gecode, the generic constraint * development environment: * http://www.gecode.org * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ #include namespace Gecode { namespace Int { namespace Arithmetic { /* * Bounds consistent square root * */ template forceinline ExecStatus prop_sqrt_bnd(Space* home, View x0, View x1) { bool mod; do { mod = false; { ModEvent me = x1.lq(home,floor(::sqrt(static_cast(x0.max())))); if (me_failed(me)) return ES_FAILED; mod |= me_modified(me); } { ModEvent me = x1.gq(home,floor(::sqrt(static_cast(x0.min())))); if (me_failed(me)) return ES_FAILED; mod |= me_modified(me); } { double next = static_cast(x1.max()+1); ModEvent me = x0.le(home,next*next); if (me_failed(me)) return ES_FAILED; mod |= me_modified(me); } { ModEvent me = x0.gq(home,x1.min()*x1.min()); if (me_failed(me)) return ES_FAILED; mod |= me_modified(me); } } while (mod); return ES_OK; } template forceinline SqrtBnd::SqrtBnd(Space* home, View x0, View x1) : BinaryPropagator(home,x0,x1) {} template forceinline ExecStatus SqrtBnd::post(Space* home, View x0, View x1) { GECODE_ME_CHECK(x0.gq(home,0)); if (same(x0,x1)) { GECODE_ME_CHECK(x1.lq(home,1)); } else { GECODE_ME_CHECK(x1.gq(home,0)); GECODE_ES_CHECK(prop_sqrt_bnd(home,x0,x1)); (void) new (home) SqrtBnd(home,x0,x1); } return ES_OK; } template forceinline void SqrtBnd::post(Space* home, Reflection::VarMap& vars, const Reflection::ActorSpec& spec) { spec.checkArity(2); View x0(home, vars, spec[0]); View x1(home, vars, spec[1]); (void) new (home) SqrtBnd(home,x0,x1); } template forceinline SqrtBnd::SqrtBnd(Space* home, bool share, SqrtBnd& p) : BinaryPropagator(home,share,p) {} template Actor* SqrtBnd::copy(Space* home, bool share) { return new (home) SqrtBnd(home,share,*this); } template ExecStatus SqrtBnd::propagate(Space* home, ModEventDelta) { GECODE_ES_CHECK(prop_sqrt_bnd(home,x0,x1)); return x1.assigned() ? ES_SUBSUMED(this,home) : ES_FIX; } template Support::Symbol SqrtBnd::ati(void) { return Reflection::mangle("Gecode::Int::Arithmetic::SqrtBnd"); } template Reflection::ActorSpec SqrtBnd::spec(const Space* home, Reflection::VarMap& m) const { return BinaryPropagator::spec(home, m, ati()); } /* * Domain consistent square root * */ /// Mapping ranges to squares class RangesMapSqr { public: /// Perform mapping of minimum forceinline int min(int n) const { return n*n; } /// Perform mapping of maximum forceinline int max(int n) const { return (n+1)*(n+1)-1; } }; /// Mapping integer to square root class RangesMapSqrt { public: /// Perform mapping of minimum forceinline int min(int n) const { return static_cast(floor(::sqrt(static_cast(n)))); } /// Perform mapping of maximum forceinline int max(int n) const { return static_cast(floor(::sqrt(static_cast(n)))); } }; template forceinline SqrtDom::SqrtDom(Space* home, View x0, View x1) : BinaryPropagator(home,x0,x1) {} template forceinline ExecStatus SqrtDom::post(Space* home, View x0, View x1) { GECODE_ME_CHECK(x0.gq(home,0)); if (same(x0,x1)) { GECODE_ME_CHECK(x1.lq(home,1)); } else { GECODE_ME_CHECK(x1.gq(home,0)); GECODE_ES_CHECK(prop_sqrt_bnd(home,x0,x1)); (void) new (home) SqrtDom(home,x0,x1); } return ES_OK; } template forceinline void SqrtDom::post(Space* home, Reflection::VarMap& vars, const Reflection::ActorSpec& spec) { spec.checkArity(2); View x0(home, vars, spec[0]); View x1(home, vars, spec[1]); (void) new (home) SqrtDom(home,x0,x1); } template forceinline SqrtDom::SqrtDom(Space* home, bool share, SqrtDom& p) : BinaryPropagator(home,share,p) {} template Actor* SqrtDom::copy(Space* home, bool share) { return new (home) SqrtDom(home,share,*this); } template PropCost SqrtDom::cost(ModEventDelta med) const { if (View::me(med) == ME_INT_VAL) return PC_UNARY_LO; if (View::me(med) == ME_INT_DOM) return PC_BINARY_HI; return PC_BINARY_LO; } template ExecStatus SqrtDom::propagate(Space* home, ModEventDelta med) { if (View::me(med) != ME_INT_DOM) { GECODE_ES_CHECK(prop_sqrt_bnd(home,x0,x1)); return x1.assigned() ? ES_SUBSUMED(this,home) : ES_NOFIX_PARTIAL(this,View::med(ME_INT_DOM)); } { ViewRanges r(x0); Iter::Ranges::Map,RangesMapSqrt,false> m(r); GECODE_ME_CHECK(x1.inter_r(home,m,false)); } { ViewRanges r(x1); Iter::Ranges::Map,RangesMapSqr,true> m(r); GECODE_ME_CHECK(x0.inter_r(home,m,false)); } return x1.assigned() ? ES_SUBSUMED(this,home) : ES_FIX; } template Support::Symbol SqrtDom::ati(void) { return Reflection::mangle("Gecode::Int::Arithmetic::SqrtDom"); } template Reflection::ActorSpec SqrtDom::spec(const Space* home, Reflection::VarMap& m) const { return BinaryPropagator::spec(home, m, ati()); } }}} // STATISTICS: int-prop