/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Patrick Pekczynski * * Copyright: * Patrick Pekczynski, 2004 * * 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_SORTED_HH #define GECODE_INT_SORTED_HH #include /** * \namespace Gecode::Int::Sorted * \brief %Sorted propagators */ namespace Gecode { namespace Int { namespace Sorted { /** * \brief Bounds consistent sortedness propagator * * The algorithm is taken from: Sven Thiel, Efficient Algorithms * for Constraint Propagation and for Processing Tree Descriptions, * PhD thesis, Universität des Saarlandes, Germany, 2004, pages 39-59. * * Requires \code #include \endcode * \ingroup FuncIntProp */ template class Sorted : public Propagator { protected: /// Views to be sorted ViewArray x; /// Views denoting the sorted version of \a x ViewArray y; /// Permutation variables (none, if Perm is false) ViewArray z; /// Original \a y array ViewArray w; /// connection to dropped view int reachable; /// Constructor for posting Sorted(Home home, ViewArray& x, ViewArray& y, ViewArray& z); /// Constructor for cloning Sorted(Space& home, Sorted& p); public: /// Delete propagator and return its size virtual size_t dispose(Space& home); /// Copy propagator during cloning virtual Actor* copy(Space& home); /// Cost function returning low linear 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 views \a x, \a y, and \a z static ExecStatus post(Home home, ViewArray& x, ViewArray& y, ViewArray& z); }; }}} #include #include #include #include #include #endif // STATISTICS: int-prop