/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * Guido Tack * * Copyright: * Christian Schulte, 2002 * Guido Tack, 2004 * * Last modified: * $Date: 2011-09-20 21:58:39 +1000 (Tue, 20 Sep 2011) $ by $Author: schulte $ * $Revision: 12404 $ * * 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. * */ #ifndef __GECODE_INT_COUNT_HH__ #define __GECODE_INT_COUNT_HH__ #include /** * \namespace Gecode::Int::Count * \brief Counting propagators */ namespace Gecode { namespace Int { namespace Count { /** * Relations for domain consistent counting * */ //@{ /// Description of view type enum ViewTypeDesc { VTD_CONSTVIEW, ///< Constant view VTD_INTSET, ///< Integer set VTD_VARVIEW ///< Variable view }; /// Return the view type description of \a y template ViewTypeDesc vtd(VY y); /// Subscribe propagator \a p to view \a y template void subscribe(Space& home, Propagator& p, VY y); /// Cancel propagator \a p for view \a y template void cancel(Space& home, Propagator& p, VY y); /// Test whether \a x and \a y are equal template RelTest holds(VX x, VX y); /// Test whether \a x and \a y are equal template RelTest holds(VX x, ConstIntView y); /// Test whether \a x and \a y are equal template RelTest holds(VX x, ZeroIntView y); /// Test whether \a x and \a y are equal template RelTest holds(VX x, const IntSet& y); /// Post that all views in \a x are equal to \a y template ExecStatus post_true(Home home, ViewArray& x, VX y); /// Post that all views in \a x are equal to \a y template ExecStatus post_true(Home home, ViewArray& x, ConstIntView y); /// Post that all views in \a x are equal to \a y template ExecStatus post_true(Home home, ViewArray& x, ZeroIntView y); /// Post that all views in \a x are equal to \a y template ExecStatus post_true(Home home, ViewArray& x, const IntSet& y); /// Post that all views in \a x are not equal to \a y template ExecStatus post_false(Home home, ViewArray& x, VX y); /// Post that all views in \a x are not equal to \a y template ExecStatus post_false(Home home, ViewArray& x, ConstIntView y); /// Post that all views in \a x are not equal to \a y template ExecStatus post_false(Home home, ViewArray& x, ZeroIntView y); /// Post that all views in \a x are not equal to \a y template ExecStatus post_false(Home home, ViewArray& x, const IntSet& y); /// Prune that \a y is the union of \a x template ExecStatus prune(Home home, ViewArray& x, VX y); /// Prune that \a y is the union of \a x template ExecStatus prune(Home home, ViewArray& x, ConstIntView y); /// Prune that \a y is the union of \a x template ExecStatus prune(Home home, ViewArray& x, ZeroIntView y); /// Prune that \a y is the union of \a x template ExecStatus prune(Home home, ViewArray& x, const IntSet& y); //@} }}} #include namespace Gecode { namespace Int { namespace Count { /** * \brief Baseclass for count propagators (integer) * */ template class IntBase : public Propagator { protected: /// Views still to count ViewArray x; /// Views from x[0] ... x[n_s-1] have subscriptions int n_s; /// View to compare to VY y; /// Number of views which are equal and have been eliminated int c; /// Constructor for cloning \a p IntBase(Space& home, bool share, IntBase& p); /// Constructor for creation IntBase(Home home, ViewArray& x, int n_s, VY y, int c); public: /// Cost function (defined as low linear) virtual PropCost cost(const Space& home, const ModEventDelta& med) const; /// Delete propagator and return its size virtual size_t dispose(Space& home); }; /** * \brief %Propagator for counting views (equal integer to number of equal views) * * Not all combinations of views are possible. The types \a VX * and \a VY must be either equal, or \a VY must be ConstIntView, * ZeroIntView, or IntSet. * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class EqInt : public IntBase { protected: using IntBase::x; using IntBase::n_s; using IntBase::y; using IntBase::c; /// Constructor for cloning \a p EqInt(Space& home, bool share, EqInt& p); /// Constructor for creation EqInt(Home home, ViewArray& x, int n_s, VY y, int c); public: /// Create copy during cloning virtual Actor* copy(Space& home, bool share); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$\#\{i\in\{0,\ldots,|x|-1\}\;|\;x_i=y\}=c\f$ static ExecStatus post(Home home, ViewArray& x, VY y, int c); }; /** * \brief %Propagator for counting views (greater or equal integer to number of equal views) * * Not all combinations of views are possible. The types \a VX * and \a VY must be either equal, or \a VY must be ConstIntView, * ZeroIntView, or IntSet. * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class GqInt : public IntBase { protected: using IntBase::x; using IntBase::n_s; using IntBase::y; using IntBase::c; /// Constructor for cloning \a p GqInt(Space& home, bool share, GqInt& p); /// Constructor for creation GqInt(Home home, ViewArray& x, int n_s, VY y, int c); public: /// Create copy during cloning virtual Actor* copy(Space& home, bool share); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$\#\{i\in\{0,\ldots,|x|-1\}\;|\;x_i=y\}\geq c\f$ static ExecStatus post(Home home, ViewArray& x, VY y, int c); }; /** * \brief %Propagator for counting views (less or equal integer to number of equal views) * * Not all combinations of views are possible. The types \a VX * and \a VY must be either equal, or \a VY must be ConstIntView, * ZeroIntView, or IntSet. * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class LqInt : public IntBase { protected: using IntBase::x; using IntBase::n_s; using IntBase::y; using IntBase::c; /// Constructor for cloning \a p LqInt(Space& home, bool share, LqInt& p); /// Constructor for creation LqInt(Home home, ViewArray& x, int n_s, VY y, int c); public: /// Create copy during cloning virtual Actor* copy(Space& home, bool share); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$\#\{i\in\{0,\ldots,|x|-1\}\;|\;x_i=y\}\leq c\f$ static ExecStatus post(Home home, ViewArray& x, VY y, int c); }; }}} #include #include #include #include namespace Gecode { namespace Int { namespace Count { /** * \brief Base-class for count propagators (view) * */ template class ViewBase : public Propagator { protected: /// Views still to count ViewArray x; /// View to compare to VY y; /// View which yields result of counting VZ z; /// Number of views which are equal and have been eliminated int c; /// Constructor for cloning \a p ViewBase(Space& home, bool share, ViewBase& p); /// Constructor for creation ViewBase(Home home, ViewArray& x, VY y, VZ z, int c); public: /// Delete propagator and return its size virtual size_t dispose(Space& home); /// Cost function (defined as low linear) virtual PropCost cost(const Space& home, const ModEventDelta& med) const; protected: /// Count how many views are equal now void count(Space& home); /// How many views are at least equal int atleast(void) const; /// How many views are at most equal int atmost(void) const; /// Test whether there is sharing of \a z with \a x or \a y static bool sharing(const ViewArray& x, const VY& y, const VZ& z); }; /** * \brief %Propagator for counting views (equal to number of equal views) * * Not all combinations of views are possible. The types \a VX * and \a VY must be either equal, or \a VY must be ConstIntView, * ZeroIntView, or IntSet. * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class EqView : public ViewBase { protected: using ViewBase::x; using ViewBase::z; using ViewBase::c; using ViewBase::y; using ViewBase::count; using ViewBase::atleast; using ViewBase::atmost; using ViewBase::sharing; /// Constructor for cloning \a p EqView(Space& home, bool share, EqView& p); public: /// Constructor for creation EqView(Home home, ViewArray& x, VY y, VZ z, int c); /// Create copy during cloning virtual Actor* copy(Space& home, bool share); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$\#\{i\in\{0,\ldots,|x|-1\}\;|\;x_i=y\}=z+c\f$ static ExecStatus post(Home home, ViewArray& x, VY y, VZ z, int c); }; /** * \brief %Propagator for counting views (less or equal to number of equal views) * * Not all combinations of views are possible. The types \a VX * and \a VY must be either equal, or \a VY must be ConstIntView, * ZeroIntView, or IntSet. * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class LqView : public ViewBase { protected: using ViewBase::x; using ViewBase::z; using ViewBase::c; using ViewBase::y; using ViewBase::count; using ViewBase::atleast; using ViewBase::atmost; using ViewBase::sharing; /// Constructor for cloning \a p LqView(Space& home, bool share, LqView& p); public: /// Constructor for creation LqView(Home home, ViewArray& x, VY y, VZ z, int c); /// Create copy during cloning virtual Actor* copy(Space& home, bool share); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$\#\{i\in\{0,\ldots,|x|-1\}\;|\;x_i=y\}\leq z+c\f$ static ExecStatus post(Home home, ViewArray& x, VY y, VZ z, int c); }; /** * \brief %Propagator for counting views (greater or equal to number of equal views) * * Not all combinations of views are possible. The types \a VX * and \a VY must be either equal, or \a VY must be ConstIntView, * ZeroIntView, or IntSet. * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class GqView : public ViewBase { protected: using ViewBase::x; using ViewBase::z; using ViewBase::c; using ViewBase::y; using ViewBase::count; using ViewBase::atleast; using ViewBase::atmost; using ViewBase::sharing; /// Constructor for cloning \a p GqView(Space& home, bool share, GqView& p); public: /// Constructor for creation GqView(Home home, ViewArray& x, VY y, VZ z, int c); /// Create copy during cloning virtual Actor* copy(Space& home, bool share); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$\#\{i\in\{0,\ldots,|x|-1\}\;|\;x_i=y\}\geq z+c\f$ static ExecStatus post(Home home, ViewArray& x, VY y, VZ z, int c); }; }}} #include #include #include #include #endif // STATISTICS: int-prop