/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2004 * * Last modified: * $Date: 2007-09-19 09:51:28 +0200 (Wed, 19 Sep 2007) $ by $Author: schulte $ * $Revision: 5048 $ * * 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 pointwise minus of a range iterator * * This iterator in effect changes the order of how ranges * are iterated: the first range of the input iterator defines * the last range of the Minus iterator. Upon initialization * all ranges of the input iterator are stored in an array * which later allows iteration in inverse direction. * * \ingroup FuncIterRanges */ template class Minus { private: /// %Range for storage in array class Range { public: int min; int max; }; /// %Ranges stored SharedArray r; /// Current range int c; public: /// \name Constructors and initialization //@{ /// Default constructor Minus(void); /// Initialize with ranges from \a i Minus(I& i); /// Initialize with ranges from \a i void init(I& i); //@} /// \name Iteration control //@{ /// Test whether iterator is still at a range or done bool operator()(void) const; /// Move iterator to next range (if possible) void operator++(void); //@} /// \name Range access //@{ /// Return smallest value of range int min(void) const; /// Return largest value of range int max(void) const; /// Return width of range (distance between minimum and maximum) unsigned int width(void) const; //@} }; template forceinline Minus::Minus(void) {} template inline void Minus::init(I& i) { Support::DynamicArray d; int n=0; while (i()) { d[n].min = -i.max(); d[n].max = -i.min(); ++n; ++i; } r.init(n); for (int j=n; j--; ) r[j]=d[j]; c = n-1; } template inline Minus::Minus(I& i) { init(i); } template forceinline void Minus::operator++(void) { c--; } template forceinline bool Minus::operator()(void) const { return c >= 0; } template forceinline int Minus::min(void) const { return r[c].min; } template forceinline int Minus::max(void) const { return r[c].max; } template forceinline unsigned int Minus::width(void) const { return static_cast(r[c].max-r[c].min+1); } }}} // STATISTICS: iter-any