/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * Guido Tack * * Copyright: * Guido Tack, 2004 * Christian Schulte, 2005 * * Last modified: * $Date: 2010-07-29 01:35:33 +1000 (Thu, 29 Jul 2010) $ by $Author: schulte $ * $Revision: 11294 $ * * 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. * */ namespace Gecode { namespace Iter { namespace Ranges { /** * \brief Range iterator for computing the complement (described by template arguments) * * The complement is computed with respect to a given universe set * provided as template arguments (\a UMIN ... \a UMAX). The universe * must always be a superset! * * \ingroup FuncIterRanges */ template class Compl : public MinMax { protected: /// Iterator to compute complement for I i; /// Initialize void start(void); public: /// \name Constructors and initialization //@{ /// Default constructor Compl(void); /// Initialize with iterator \a i Compl(I& i); /// Initialize with iterator \a i void init(I& i); //@} /// \name Iteration control //@{ /// Move iterator to next range (if possible) void operator ++(void); //@} }; /** * \brief Range iterator for computing the complement (described by values) * * The complement is computed with respect to a given universe set * provided as arguments upon initialization. The universe * must always be a superset! * * \ingroup FuncIterRanges */ template class ComplVal : public MinMax { protected: /// Values describing the universe set int UMIN, UMAX; /// Iterator to compute complement for I i; /// Initialize void start(void); public: /// \name Constructors and initialization //@{ /// Default constructor ComplVal(void); /// Initialize with iterator \a i ComplVal(int umin, int umax, I& i); /// Initialize with iterator \a i void init(int umin, int umax, I& i); //@} /// \name Iteration control //@{ /// Move iterator to next range (if possible) void operator ++(void); //@} }; template forceinline void Compl::start(void) { if (i()) { assert((i.min() >= UMIN) && (i.max() <= UMAX)); if (i.min() > UMIN) { mi = UMIN; ma = i.min()-1; } else if (i.max() < UMAX) { mi = i.max()+1; ++i; ma = i() ? (i.min()-1) : UMAX; } else { finish(); } } else { mi = UMIN; ma = UMAX; } } template forceinline Compl::Compl(void) {} template forceinline Compl::Compl(I& i0) : i(i0) { start(); } template forceinline void Compl::init(I& i0) { i=i0; start(); } template forceinline void Compl::operator ++(void) { assert(!i() || (i.max() <= UMAX)); if (i() && (i.max() < UMAX)) { mi = i.max()+1; ++i; ma = i() ? (i.min()-1) : UMAX; } else { finish(); } } template forceinline void ComplVal::start(void) { if (i()) { assert((i.min() >= UMIN) && (i.max() <= UMAX)); if (i.min() > UMIN) { mi = UMIN; ma = i.min()-1; } else if (i.max() < UMAX) { mi = i.max()+1; ++i; ma = i() ? (i.min()-1) : UMAX; } else { finish(); } } else { mi = UMIN; ma = UMAX; } } template forceinline ComplVal::ComplVal(void) {} template forceinline ComplVal::ComplVal(int umin, int umax, I& i0) : UMIN(umin), UMAX(umax), i(i0) { start(); } template forceinline void ComplVal::init(int umin, int umax, I& i0) { UMIN=umin; UMAX=umax; i=i0; start(); } template forceinline void ComplVal::operator ++(void) { assert(!i() || (i.max() <= UMAX)); if (i() && (i.max() < UMAX)) { mi = i.max()+1; ++i; ma = i() ? (i.min()-1) : UMAX; } else { finish(); } } }}} // STATISTICS: iter-any