/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2002 * * Last modified: * $Date: 2007-09-11 14:20:32 +0200 (Tue, 11 Sep 2007) $ by $Author: schulte $ * $Revision: 4971 $ * * 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. * */ #include namespace Gecode { namespace Support { /** * \brief Array with arbitrary number of elements * * \ingroup FuncSupport */ template class DynamicArray { private: /// Size of array int n; /// Array elements T* x; /// Resize to at least \a n + 1 elements void resize(int n); public: /// Initialize with size \a m DynamicArray(int m = 32); /// Copy elements from array \a a DynamicArray(const DynamicArray& a); /// Release memory ~DynamicArray(void); /// Assign array (copy elements from \a a) const DynamicArray& operator =(const DynamicArray& a); /// Return element at position \a i (possibly resize) T& operator[](int i); /// Return element at position \a i const T& operator [](int) const; /// Cast in to pointer of type \a T operator T*(void); }; template forceinline DynamicArray::DynamicArray(int m) : n(m), x(Memory::bmalloc(static_cast(n))) {} template forceinline DynamicArray::DynamicArray(const DynamicArray& a) : n(a.n), x(Memory::bmalloc(n)) { (void) Memory::bcopy(x,a.x,n); } template forceinline DynamicArray::~DynamicArray(void) { Memory::free(x); } template forceinline const DynamicArray& DynamicArray::operator =(const DynamicArray& a) { if (this != &a) { if (n < a.n) { Memory::free(x); n = a.n; x = Memory::bmalloc(n); } (void) Memory::bcopy(x,a.x,n); } return *this; } template void DynamicArray::resize(int i) { int m = std::max(i+1, (3*n)/2); x = Memory::brealloc(x,static_cast(n),static_cast(m)); n = m; } template forceinline T& DynamicArray::operator [](int i) { if (i >= n) resize(i); assert(n > i); return x[i]; } template forceinline const T& DynamicArray::operator [](int i) const { assert(n > i); return x[i]; } template forceinline DynamicArray::operator T*(void) { return x; } }} // STATISTICS: support-any