/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2008 * * Last modified: * $Date: 2008-02-25 00:16:01 +0100 (Mon, 25 Feb 2008) $ by $Author: schulte $ * $Revision: 6288 $ * * 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 { /* * Positive bounds-consistent squaring * */ template forceinline Sqrt::Sqrt(Space* home, View x0, View x1) : BinaryPropagator(home,x0,x1) {} template forceinline ExecStatus Sqrt::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)); (void) new (home) Sqrt(home,x0,x1); } return ES_OK; } template forceinline void Sqrt::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) Sqrt(home,x0,x1); } template forceinline Sqrt::Sqrt(Space* home, bool share, Sqrt& p) : BinaryPropagator(home,share,p) {} template Actor* Sqrt::copy(Space* home, bool share) { return new (home) Sqrt(home,share,*this); } template PropCost Sqrt::cost(ModEventDelta) const { return PC_BINARY_HI; } template ExecStatus Sqrt::propagate(Space* home, ModEventDelta) { 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,ceil(::sqrt(static_cast(x0.min()))-1.0)); 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 x1.assigned() ? ES_SUBSUMED(this,home) : ES_FIX; } template Support::Symbol Sqrt::ati(void) { return Reflection::mangle("Gecode::Int::Arithmetic::Sqrt"); } template Reflection::ActorSpec Sqrt::spec(const Space* home, Reflection::VarMap& m) const { return BinaryPropagator::spec(home, m, ati()); } }}} // STATISTICS: int-prop