/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * David Rijsman * * Copyright: * David Rijsman, 2009 * * 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_SEQUENCE_HH #define GECODE_INT_SEQUENCE_HH #include #include namespace Gecode { namespace Int { namespace Sequence { /** * \namespace Gecode::Int::Sequence * \brief %Sequence propagators * * This namespace contains a propagator for the * cumulatives constraint as presented in * Willem Jan van Hoeve, Gilles Pesant, Louis-Martin Rousseau, and * Ashish Sabharwal, New filtering algorithms for combinations of * among constraints. Constraints, 14(2), 273-292, 2009. * */ template class SupportAdvisor; template class ViewValSupport; /** * \brief An array of %ViewValSupport data structures * */ template class ViewValSupportArray { private: /// The actual array ViewValSupport* xs; /// The size of the array int n; public: /// Default constructor ViewValSupportArray(void); /// Copy constructor ViewValSupportArray(const ViewValSupportArray&); /// Construct an ViewValSupportArray from \a x ViewValSupportArray(Space& home, ViewArray&, Val s, int q); /// Construct an ViewValSupportArray of size \a n ViewValSupportArray(Space& home, int n); /// Return the current size int size(void) const; /// Access element \a n ViewValSupport& operator [](int n); /// Access element \a n const ViewValSupport& operator [](int) const; /// Cloning void update(Space& home, ViewValSupportArray& x); /// Propagate ExecStatus propagate(Space& home,ViewArray& a,Val s,int q,int l,int u); /// Advise ExecStatus advise(Space& home,ViewArray& a,Val s,int q,int j,const Delta& d); }; /** * \brief %Sequence propagator for array of integers * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class Sequence : public Propagator { protected: /// Constructor for cloning \a p Sequence(Space& home, Sequence& p); /// Constructor for creation Sequence(Home home, ViewArray& x, Val s, int q, int l, int u); public: /// Perform copying during cloning virtual Actor* copy(Space& home); /// Advise function ExecStatus advise(Space& home, Advisor& _a, const Delta& d); /// Cost function virtual PropCost cost(const Space& home, const ModEventDelta& med) const; /// Schedule function virtual void reschedule(Space& home); /// Perform propagation virtual ExecStatus propagate(Space& home, const ModEventDelta& med); /// Post propagator for static ExecStatus post(Home home, ViewArray& x, Val s, int q, int l, int u); /// Check for consistency static ExecStatus check(ViewArray& x, Val s, int q, int l, int u); /// Delete propagator and return its size virtual size_t dispose(Space& home); private: /// Views to sequence ViewArray x; /// Value counted in the sequence Val s; /// Length of each sequence int q; /// Lower bound int l; /// Upper bound int u; /// Array containing supports for s ViewValSupportArray vvsamax; /// Array containing supports for not s ViewValSupportArray vvsamin; /// Council for advisors Council > ac; /// Whether to fail when being rescheduled bool tofail; }; }}} #include #include #include #include #endif // STATISTICS: int-prop