/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2003 * * Last modified: * $Date: 2007-08-09 15:30:21 +0200 (Thu, 09 Aug 2007) $ by $Author: tack $ * $Revision: 4790 $ * * 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 "gecode/int/rel.hh" namespace Gecode { namespace Int { namespace Count { /* * Counting domain-consistent equality * */ template forceinline RelTest holds(VX x, ConstIntView y) { return rtest_eq_dom(x,y.val()); } template forceinline RelTest holds(VX x, ZeroIntView) { return rtest_eq_dom(x,0); } template forceinline RelTest holds(VX x, VX y) { return rtest_eq_dom(x,y); } template forceinline bool post_true(Space* home, VX x, ConstIntView y) { return me_failed(x.eq(home,y.val())); } template forceinline bool post_true(Space* home, VX x, ZeroIntView) { return me_failed(x.eq(home,0)); } template forceinline bool post_true(Space* home, ViewArray& x, ConstIntView y) { for (int i = x.size(); i--; ) if (me_failed(x[i].eq(home,y.val()))) return true; return false; } template forceinline bool post_true(Space* home, ViewArray& x, ZeroIntView) { for (int i = x.size(); i--; ) if (me_failed(x[i].eq(home,0))) return true; return false; } template forceinline bool post_false(Space* home, VX x, ConstIntView y) { return me_failed(x.nq(home,y.val())); } template forceinline bool post_false(Space* home, VX x, ZeroIntView) { return me_failed(x.nq(home,0)); } template forceinline bool post_false(Space* home, ViewArray& x, ConstIntView y) { for (int i = x.size(); i--; ) if (me_failed(x[i].nq(home,y.val()))) return true; return false;; } template forceinline bool post_false(Space* home, ViewArray& x, ZeroIntView) { for (int i = x.size(); i--; ) if (me_failed(x[i].nq(home,0))) return true; return false;; } template forceinline bool post_true(Space* home, ViewArray& x, VX y) { ViewArray z(home,x.size()+1); z[x.size()] = y; for (int i = x.size(); i--; ) z[i] = x[i]; return Rel::NaryEqDom::post(home,z) == ES_FAILED; } template forceinline bool post_true(Space* home, VX x, VX y) { return Rel::EqDom::post(home,x,y) == ES_FAILED; } template forceinline bool post_false(Space* home, ViewArray& x, VX y) { for (int i = x.size(); i--; ) if (Rel::Nq::post(home,x[i],y) == ES_FAILED) return true; return false; } template forceinline bool post_false(Space* home, VX x, VX y) { return Rel::Nq::post(home,x,y) == ES_FAILED; } }}} // STATISTICS: int-prop