/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Guido Tack * Christian Schulte * * Copyright: * Guido Tack, 2004 * Christian Schulte, 2004 * * Last modified: * $Date: 2011-05-02 08:24:42 +1000 (Mon, 02 May 2011) $ by $Author: tack $ * $Revision: 11973 $ * * 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_SET_INT_HH__ #define __GECODE_SET_INT_HH__ #include namespace Gecode { namespace Set { namespace Int { /** * \namespace Gecode::Set::Int * \brief Propagators connecting set and int variables */ /** * \brief %Propagator for minimum element * * Requires \code #include \endcode * \ingroup FuncSetProp */ template class MinElement : public MixBinaryPropagator { protected: using MixBinaryPropagator::x0; using MixBinaryPropagator::x1; /// Constructor for cloning \a p MinElement(Space& home, bool share,MinElement& p); /// Constructor for posting MinElement(Home home, View, Gecode::Int::IntView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \a x is the minimal element of \a s static ExecStatus post(Home home, View s, Gecode::Int::IntView x); }; /** * \brief %Propagator for not minimum element * * Requires \code #include "gecode/set/int.hh" \endcode * \ingroup FuncSetProp */ template class NotMinElement : public MixBinaryPropagator { protected: using MixBinaryPropagator::x0; using MixBinaryPropagator::x1; /// Constructor for cloning \a p NotMinElement(Space& home, bool share,NotMinElement& p); /// Constructor for posting NotMinElement(Home home, View, Gecode::Int::IntView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \a x is not the minimal element of \a s static ExecStatus post(Home home, View s, Gecode::Int::IntView x); }; /** * \brief %Propagator for reified minimum element * * Requires \code #include "gecode/set/int.hh" \endcode * \ingroup FuncSetProp */ template class ReMinElement : public Gecode::Int::ReMixBinaryPropagator { protected: using Gecode::Int::ReMixBinaryPropagator::x0; using Gecode::Int::ReMixBinaryPropagator::x1; using Gecode::Int::ReMixBinaryPropagator::b; /// Constructor for cloning \a p ReMinElement(Space& home, bool share,ReMinElement& p); /// Constructor for posting ReMinElement(Home home, View, Gecode::Int::IntView, Gecode::Int::BoolView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post reified propagator for \a b iff \a x is the minimal element of \a s static ExecStatus post(Home home, View s, Gecode::Int::IntView x, Gecode::Int::BoolView b); }; /** * \brief %Propagator for maximum element * * Requires \code #include \endcode * \ingroup FuncSetProp */ template class MaxElement : public MixBinaryPropagator { protected: using MixBinaryPropagator::x0; using MixBinaryPropagator::x1; /// Constructor for cloning \a p MaxElement(Space& home, bool share,MaxElement& p); /// Constructor for posting MaxElement(Home home, View, Gecode::Int::IntView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \a x is the largest element of \a s static ExecStatus post(Home home, View s, Gecode::Int::IntView x); }; /** * \brief %Propagator for not maximum element * * Requires \code #include "gecode/set/int.hh" \endcode * \ingroup FuncSetProp */ template class NotMaxElement : public MixBinaryPropagator { protected: using MixBinaryPropagator::x0; using MixBinaryPropagator::x1; /// Constructor for cloning \a p NotMaxElement(Space& home, bool share,NotMaxElement& p); /// Constructor for posting NotMaxElement(Home home, View, Gecode::Int::IntView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \a x is not the largest element of \a s static ExecStatus post(Home home, View s, Gecode::Int::IntView x); }; /** * \brief %Reified propagator for maximum element * * Requires \code #include "gecode/set/int.hh" \endcode * \ingroup FuncSetProp */ template class ReMaxElement : public Gecode::Int::ReMixBinaryPropagator { protected: using Gecode::Int::ReMixBinaryPropagator::x0; using Gecode::Int::ReMixBinaryPropagator::x1; using Gecode::Int::ReMixBinaryPropagator::b; /// Constructor for cloning \a p ReMaxElement(Space& home, bool share,ReMaxElement& p); /// Constructor for posting ReMaxElement(Home home, View, Gecode::Int::IntView, Gecode::Int::BoolView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post reified propagator for \a b iff \a x is the largest element of \a s static ExecStatus post(Home home, View s, Gecode::Int::IntView x, Gecode::Int::BoolView b); }; /** * \brief %Propagator for cardinality * * Requires \code #include \endcode * \ingroup FuncSetProp */ template class Card : public MixBinaryPropagator { protected: using MixBinaryPropagator::x0; using MixBinaryPropagator::x1; /// Constructor for cloning \a p Card(Space& home, bool share,Card& p); /// Constructor for posting Card(Home home, View, Gecode::Int::IntView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$ |s|=x \f$ static ExecStatus post(Home home, View s, Gecode::Int::IntView x); }; /** * \brief %Propagator for the match constraint * * Requires \code #include \endcode * \ingroup FuncSetProp */ template class Match : public Propagator { protected: /// SetView for the match View x0; /// IntViews that together form the set \a x0 ViewArray xs; /// Constructor for cloning \a p Match(Space& home, bool share,Match& p); /// Constructor for posting Match(Home home, View, ViewArray&); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Cost function (defined as PC_LINEAR_LO) virtual PropCost cost(const Space& home, const ModEventDelta& med) const; /// Delete Propagator virtual size_t dispose(Space& home); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator that propagates that \a s contains the \f$x_i\f$, which are sorted in non-descending order static ExecStatus post(Home home, View s, ViewArray& x); }; /** * \brief %Propagator for channelling between variable-value-dual models * * Implements channelling constraints between IntVars and SetVars. * For IntVars \f$x_0,\dots,x_n\f$ and SetVars \f$y_0,\dots,y_m\f$ it * propagates the constraint \f$x_i=j \Leftrightarrow i\in y_j\f$. * * Can be used to implement the "channelling constraints" for disjoint with * cardinalities from * "Disjoint, Partition and Intersection Constraints for * Set and Multiset Variables" * Christian Bessiere, Emmanuel Hebrard, Brahim Hnich, Toby Walsh * CP 2004 * * Requires \code #include \endcode * \ingroup FuncSetProp */ template class ChannelInt : public Propagator { protected: /// IntViews, \f$x_i\f$ reflects which set contains element \f$i\f$ ViewArray > xs; /// SetViews that are constrained to be disjoint ViewArray > ys; /// Constructor for cloning \a p ChannelInt(Space& home, bool share,ChannelInt& p); /// Constructor for posting ChannelInt(Home home, ViewArray >&, ViewArray >&); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Cost function (defined as PC_QUADRATIC_LO) virtual PropCost cost(const Space& home, const ModEventDelta& med) const; /// Delete propagator and return its size virtual size_t dispose(Space& home); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$x_i=j \Leftrightarrow i\in y_j\f$ static ExecStatus post(Home home, ViewArray >& x, ViewArray >& y); }; /** * \brief %Propagator for channelling between set variable and its * characteristic function * * Implements channelling constraints between BoolVar and a SetVar. * For BoolVars \f$x_0,\dots,x_n\f$ and SetVar \f$y\f$ it * propagates the constraint \f$x_i=1 \Leftrightarrow i\in y\f$. * * Requires \code #include \endcode * \ingroup FuncSetProp */ template class ChannelBool : public MixNaryOnePropagator { protected: typedef MixNaryOnePropagator Super; using Super::x; using Super::y; /// Constructor for cloning \a p ChannelBool(Space& home, bool share,ChannelBool& p); /// Constructor for posting ChannelBool(Home home,ViewArray&, View); /// %Advisor storing a single index class IndexAdvisor : public Advisor { protected: /// The single index int idx; public: /// Constructor for creation template IndexAdvisor(Space& home, ChannelBool& p, Council& c, int index); /// Constructor for cloning \a a IndexAdvisor(Space& home, bool share, IndexAdvisor& a); /// Access index int index(void) const; /// Delete advisor template void dispose(Space& home, Council& c); }; /// Council for managing advisors Council co; /// Accumulated delta information SetDelta delta; /// Accumulated zero Booleans GLBndSet zeros; /// Accumulated one Booleans GLBndSet ones; /// Flag whether propagation is currently running bool running; public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Cost function (defined as PC_QUADRATIC_LO) virtual PropCost cost(const Space& home, const ModEventDelta& med) const; /// Delete propagator and return its size virtual size_t dispose(Space& home); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Give advice to propagator virtual ExecStatus advise(Space& home, Advisor& a, const Delta& d); /// Post propagator for \f$x_i=j \Leftrightarrow i\in y_j\f$ static ExecStatus post(Home home,ViewArray& x, View y); }; /** * \brief %Propagator for weight of a set * * Requires \code #include \endcode * \ingroup FuncSetProp */ template class Weights : public Propagator { protected: /// List of elements in the upper bound SharedArray elements; /// Weights for the elements in the upper bound SharedArray weights; /// The set view View x; /// The integer view Gecode::Int::IntView y; /// Constructor for cloning \a p Weights(Space& home, bool share,Weights& p); /// Constructor for posting Weights(Home home, const SharedArray&, const SharedArray&, View, Gecode::Int::IntView); public: /// Copy propagator during cloning virtual Actor* copy(Space& home,bool); /// Cost function (defined as PC_LINEAR_LO) virtual PropCost cost(const Space& home, const ModEventDelta& med) const; /// Delete propagator and return its size virtual size_t dispose(Space& home); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for \f$\sum_{i\in x} weights_i = y \f$ static ExecStatus post(Home home, const SharedArray& elements, const SharedArray& weights, View x, Gecode::Int::IntView y); }; }}} #include #include #include #include #include #include #endif // STATISTICS: set-prop