/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Contributing authors: * Guido Tack * * Copyright: * Christian Schulte, 2004 * Guido Tack, 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. * */ namespace Gecode { namespace Int { /// VarArg type for integer views template<> class ViewToVarArg { public: typedef IntVarArgs argtype; }; /// VarArg type for minus views template<> class ViewToVarArg { public: typedef IntVarArgs argtype; }; /// VarArg type for Boolean views template<> class ViewToVarArg { public: typedef BoolVarArgs argtype; }; /// VarArg type for Boolean views template<> class ViewToVarArg { public: typedef BoolVarArgs argtype; }; template forceinline IdxView* IdxView::allocate(Space& home, int n) { return home.alloc >(n); } template forceinline IdxViewArray::IdxViewArray(void) : xs(nullptr), n(0) {} template forceinline IdxViewArray::IdxViewArray(const IdxViewArray& a) { n = a.n; xs = a.xs; } template forceinline IdxViewArray::IdxViewArray(Space& home, const typename ViewToVarArg::argtype& xa) : xs(nullptr) { n = xa.size(); if (n>0) { xs = IdxView::allocate(home, n); for (int i=0; i forceinline IdxViewArray::IdxViewArray(Space& home, int n0) : xs(nullptr) { n = n0; if (n>0) { xs = IdxView::allocate(home, n); } } template forceinline int IdxViewArray::size(void) const { return n; } template forceinline void IdxViewArray::size(int n0) { n = n0; } template forceinline IdxView& IdxViewArray::operator [](int i) { assert((i >= 0) && (i < size())); return xs[i]; } template forceinline const IdxView& IdxViewArray::operator [](int i) const { assert((i >= 0) && (i < size())); return xs[i]; } template forceinline void IdxViewArray::subscribe(Space& home, Propagator& p, PropCond pc, bool process) { for (int i=0; i forceinline void IdxViewArray::cancel(Space& home, Propagator& p, PropCond pc) { for (int i=0; i forceinline void IdxViewArray::reschedule(Space& home, Propagator& p, PropCond pc) { for (int i=0; i forceinline void IdxViewArray::update(Space& home, IdxViewArray& a) { n = a.size(); if (n>0) { xs = IdxView::allocate(home,n); for (int i=0; i std::basic_ostream& operator <<(std::basic_ostream& os, const IdxViewArray& x) { std::basic_ostringstream s; s.copyfmt(os); s.width(0); s << '{'; if (x.size() > 0) { s << x[0].idx << ':' << x[0].view; for (int i=1; i