/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2002 * * Last modified: * $Date: 2010-10-07 07:42:28 +1100 (Thu, 07 Oct 2010) $ by $Author: schulte $ * $Revision: 11464 $ * * 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 Int { /* * Constructors and initialization * */ forceinline OffsetView::OffsetView(void) {} forceinline OffsetView::OffsetView(const IntView& y, int d) : DerivedView(y), c(d) {} /* * Value access * */ forceinline int OffsetView::offset(void) const { return c; } forceinline void OffsetView::offset(int n) { c = n; } forceinline int OffsetView::min(void) const { return x.min()+c; } forceinline int OffsetView::max(void) const { return x.max()+c; } forceinline int OffsetView::med(void) const { return x.med()+c; } forceinline int OffsetView::val(void) const { return x.val()+c; } forceinline unsigned int OffsetView::width(void) const { return x.width(); } forceinline unsigned int OffsetView::size(void) const { return x.size(); } forceinline unsigned int OffsetView::regret_min(void) const { return x.regret_min(); } forceinline unsigned int OffsetView::regret_max(void) const { return x.regret_max(); } /* * Domain tests * */ forceinline bool OffsetView::range(void) const { return x.range(); } forceinline bool OffsetView::in(int n) const { return x.in(n-c); } forceinline bool OffsetView::in(double n) const { return x.in(n-c); } /* * Domain update by value * */ forceinline ModEvent OffsetView::lq(Space& home, int n) { return x.lq(home,n-c); } forceinline ModEvent OffsetView::lq(Space& home, double n) { return x.lq(home,n-c); } forceinline ModEvent OffsetView::le(Space& home, int n) { return x.le(home,n-c); } forceinline ModEvent OffsetView::le(Space& home, double n) { return x.le(home,n-c); } forceinline ModEvent OffsetView::gq(Space& home, int n) { return x.gq(home,n-c); } forceinline ModEvent OffsetView::gq(Space& home, double n) { return x.gq(home,n-c); } forceinline ModEvent OffsetView::gr(Space& home, int n) { return x.gr(home,n-c); } forceinline ModEvent OffsetView::gr(Space& home, double n) { return x.gr(home,n-c); } forceinline ModEvent OffsetView::nq(Space& home, int n) { return x.nq(home,n-c); } forceinline ModEvent OffsetView::nq(Space& home, double n) { return x.nq(home,n-c); } forceinline ModEvent OffsetView::eq(Space& home, int n) { return x.eq(home,n-c); } forceinline ModEvent OffsetView::eq(Space& home, double n) { return x.eq(home,n-c); } /* * Iterator-based domain update * */ template forceinline ModEvent OffsetView::narrow_r(Space& home, I& i, bool depend) { Iter::Ranges::Offset oi(i,-c); return x.narrow_r(home,oi,depend); } template forceinline ModEvent OffsetView::inter_r(Space& home, I& i, bool depend) { Iter::Ranges::Offset oi(i,-c); return x.inter_r(home,oi,depend); } template forceinline ModEvent OffsetView::minus_r(Space& home, I& i, bool depend) { Iter::Ranges::Offset oi(i,-c); return x.minus_r(home,oi,depend); } template forceinline ModEvent OffsetView::narrow_v(Space& home, I& i, bool depend) { Iter::Values::Offset oi(i,-c); return x.narrow_v(home,oi,depend); } template forceinline ModEvent OffsetView::inter_v(Space& home, I& i, bool depend) { Iter::Values::Offset oi(i,-c); return x.inter_v(home,oi,depend); } template forceinline ModEvent OffsetView::minus_v(Space& home, I& i, bool depend) { Iter::Values::Offset oi(i,-c); return x.minus_v(home,oi,depend); } /* * Propagator modification events * */ forceinline ModEventDelta OffsetView::med(ModEvent me) { return IntView::med(me); } /* * Delta information for advisors * */ forceinline int OffsetView::min(const Delta& d) const { return x.min(d)+c; } forceinline int OffsetView::max(const Delta& d) const { return x.max(d)+c; } forceinline bool OffsetView::any(const Delta& d) const { return x.any(d); } /* * Cloning * */ forceinline void OffsetView::update(Space& home, bool share, OffsetView& y) { DerivedView::update(home,share,y); c=y.c; } /** * \brief %Range iterator for offset integer views * \ingroup TaskActorIntView */ template<> class ViewRanges : public Iter::Ranges::Offset > { public: /// \name Constructors and initialization //@{ /// Default constructor ViewRanges(void); /// Initialize with ranges for view \a x ViewRanges(const OffsetView& x); /// Initialize with ranges for view \a x void init(const OffsetView& x); //@} }; forceinline ViewRanges::ViewRanges(void) {} forceinline ViewRanges::ViewRanges(const OffsetView& x) { ViewRanges xi(x.base()); Iter::Ranges::Offset >::init(xi,x.offset()); } forceinline void ViewRanges::init(const OffsetView& x) { ViewRanges xi(x.base()); Iter::Ranges::Offset >::init(xi,x.offset()); } /* * View comparison * */ forceinline bool same(const OffsetView& x, const OffsetView& y) { return same(x.base(),y.base()) && (x.offset() == y.offset()); } forceinline bool before(const OffsetView& x, const OffsetView& y) { return before(x.base(),y.base()) || (same(x.base(),y.base()) && (x.offset() < y.offset())); } }} // STATISTICS: int-var