Gecode::Heap heap.hpp
Typed allocation routines
class T T * T* Gecode::Heap::alloc (long unsigned int n) alloc long unsigned int n Allocate block of n objects of type T from heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T T * T* Gecode::Heap::alloc (long int n) alloc long int n Allocate block of n objects of type T from heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T T * T* Gecode::Heap::alloc (unsigned int n) alloc unsigned int n Allocate block of n objects of type T from heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T T * T* Gecode::Heap::alloc (int n) alloc int n Allocate block of n objects of type T from heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T void void Gecode::Heap::free (T *b, long unsigned int n) free T * b long unsigned int n Delete n objects starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects. class T void void Gecode::Heap::free (T *b, long int n) free T * b long int n Delete n objects starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects. class T void void Gecode::Heap::free (T *b, unsigned int n) free T * b unsigned int n Delete n objects starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects. class T void void Gecode::Heap::free (T *b, int n) free T * b int n Delete n objects starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects. class T T * T* Gecode::Heap::realloc (T *b, long unsigned int n, long unsigned int m) realloc T * b long unsigned int n long unsigned int m Reallocate block of n objects starting at b to m objects of type T from heap. Note that this function implements C++ semantics: the copy constructor of T is run for all $\min(n,m)$ objects, the default constructor of T is run for all remaining $\max(n,m)-\min(n,m)$ objects, and the destrucor of T is run for all n objects in b.Returns the address of the new block. class T T * T* Gecode::Heap::realloc (T *b, long int n, long int m) realloc T * b long int n long int m Reallocate block of n objects starting at b to m objects of type T from heap. Note that this function implements C++ semantics: the copy constructor of T is run for all $\min(n,m)$ objects, the default constructor of T is run for all remaining $\max(n,m)-\min(n,m)$ objects, and the destrucor of T is run for all n objects in b.Returns the address of the new block. class T T * T* Gecode::Heap::realloc (T *b, unsigned int n, unsigned int m) realloc T * b unsigned int n unsigned int m Reallocate block of n objects starting at b to m objects of type T from heap. Note that this function implements C++ semantics: the copy constructor of T is run for all $\min(n,m)$ objects, the default constructor of T is run for all remaining $\max(n,m)-\min(n,m)$ objects, and the destrucor of T is run for all n objects in b.Returns the address of the new block. class T T * T* Gecode::Heap::realloc (T *b, int n, int m) realloc T * b int n int m Reallocate block of n objects starting at b to m objects of type T from heap. Note that this function implements C++ semantics: the copy constructor of T is run for all $\min(n,m)$ objects, the default constructor of T is run for all remaining $\max(n,m)-\min(n,m)$ objects, and the destrucor of T is run for all n objects in b.Returns the address of the new block. class T T ** T** Gecode::Heap::realloc (T **b, long unsigned int n, long unsigned int m) realloc T ** b long unsigned int n long unsigned int m Reallocate block of n pointers starting at b to m objects of type T* from heap. Returns the address of the new block.This is a specialization for performance. class T T ** T** Gecode::Heap::realloc (T **b, long int n, long int m) realloc T ** b long int n long int m Reallocate block of n pointers starting at b to m objects of type T* from heap. Returns the address of the new block.This is a specialization for performance. class T T ** T** Gecode::Heap::realloc (T **b, unsigned int n, unsigned int m) realloc T ** b unsigned int n unsigned int m Reallocate block of n pointers starting at b to m objects of type T* from heap. Returns the address of the new block.This is a specialization for performance. class T T ** T** Gecode::Heap::realloc (T **b, int n, int m) realloc T ** b int n int m Reallocate block of n pointers starting at b to m objects of type T* from heap. Returns the address of the new block.This is a specialization for performance. class T T * static T* Gecode::Heap::copy (T *d, const T *s, long unsigned int n) copy T * d const T * s long unsigned int n Copy n objects starting at s to d. Note that this function implements C++ semantics: the assignment operator of T is run for all n objects.Returns d. class T T * static T* Gecode::Heap::copy (T *d, const T *s, long int n) copy T * d const T * s long int n Copy n objects starting at s to d. Note that this function implements C++ semantics: the assignment operator of T is run for all n objects.Returns d. class T T * static T* Gecode::Heap::copy (T *d, const T *s, unsigned int n) copy T * d const T * s unsigned int n Copy n objects starting at s to d. Note that this function implements C++ semantics: the assignment operator of T is run for all n objects.Returns d. class T T * static T* Gecode::Heap::copy (T *d, const T *s, int n) copy T * d const T * s int n Copy n objects starting at s to d. Note that this function implements C++ semantics: the assignment operator of T is run for all n objects.Returns d. class T T ** static T** Gecode::Heap::copy (T **d, const T **s, long unsigned int n) copy T ** d const T ** s long unsigned int n Copy n pointers starting at s to d. Returns d.This is a specialization for performance. class T T ** static T** Gecode::Heap::copy (T **d, const T **s, long int n) copy T ** d const T ** s long int n Copy n pointers starting at s to d. Returns d.This is a specialization for performance. class T T ** static T** Gecode::Heap::copy (T **d, const T **s, unsigned int n) copy T ** d const T ** s unsigned int n Copy n pointers starting at s to d. Returns d.This is a specialization for performance. class T T ** static T** Gecode::Heap::copy (T **d, const T **s, int n) copy T ** d const T ** s int n Copy n pointers starting at s to d. Returns d.This is a specialization for performance.
Raw allocation routines
void * forceinline void * Gecode::Heap::ralloc (size_t s) ralloc size_t s Allocate s bytes from heap. void forceinline void Gecode::Heap::rfree (void *p) rfree void * p Free memory block starting at p. void forceinline void Gecode::Heap::rfree (void *p, size_t s) rfree void * p size_t s Free memory block starting at p with size s. void * forceinline void * Gecode::Heap::rrealloc (void *p, size_t s) rrealloc void * p size_t s Change memory block starting at p to size s.
Gecode::Heap::Heap (void) Heap void Default constructor (ensuring that only a single instance is created) class T forceinline T * forceinline T* Gecode::Heap::alloc (long unsigned int n) alloc long unsigned int n class T forceinline T * forceinline T* Gecode::Heap::alloc (long int n) alloc long int n class T forceinline T * forceinline T* Gecode::Heap::alloc (unsigned int n) alloc unsigned int n class T forceinline T * forceinline T* Gecode::Heap::alloc (int n) alloc int n class T forceinline void forceinline void Gecode::Heap::free (T *b, long unsigned int n) free T * b long unsigned int n class T forceinline void forceinline void Gecode::Heap::free (T *b, long int n) free T * b long int n class T forceinline void forceinline void Gecode::Heap::free (T *b, unsigned int n) free T * b unsigned int n class T forceinline void forceinline void Gecode::Heap::free (T *b, int n) free T * b int n class T forceinline T * forceinline T* Gecode::Heap::realloc (T *b, long unsigned int n, long unsigned int m) realloc T * b long unsigned int n long unsigned int m class T forceinline T * forceinline T* Gecode::Heap::realloc (T *b, long int n, long int m) realloc T * b long int n long int m class T forceinline T * forceinline T* Gecode::Heap::realloc (T *b, unsigned int n, unsigned int m) realloc T * b unsigned int n unsigned int m class T forceinline T * forceinline T* Gecode::Heap::realloc (T *b, int n, int m) realloc T * b int n int m class T forceinline T ** forceinline T** Gecode::Heap::realloc (T **b, long unsigned int, long unsigned int m) realloc T ** b long unsigned int long unsigned int m class T forceinline T ** forceinline T** Gecode::Heap::realloc (T **b, long int n, long int m) realloc T ** b long int n long int m class T forceinline T ** forceinline T** Gecode::Heap::realloc (T **b, unsigned int n, unsigned int m) realloc T ** b unsigned int n unsigned int m class T forceinline T ** forceinline T** Gecode::Heap::realloc (T **b, int n, int m) realloc T ** b int n int m class T forceinline T * forceinline T* Gecode::Heap::copy (T *d, const T *s, long unsigned int n) copy T * d const T * s long unsigned int n class T forceinline T * forceinline T* Gecode::Heap::copy (T *d, const T *s, long int n) copy T * d const T * s long int n class T forceinline T * forceinline T* Gecode::Heap::copy (T *d, const T *s, unsigned int n) copy T * d const T * s unsigned int n class T forceinline T * forceinline T* Gecode::Heap::copy (T *d, const T *s, int n) copy T * d const T * s int n class T forceinline T ** forceinline T** Gecode::Heap::copy (T **d, const T **s, long unsigned int n) copy T ** d const T ** s long unsigned int n class T forceinline T ** forceinline T** Gecode::Heap::copy (T **d, const T **s, long int n) copy T ** d const T ** s long int n class T forceinline T ** forceinline T** Gecode::Heap::copy (T **d, const T **s, unsigned int n) copy T ** d const T ** s unsigned int n class T forceinline T ** forceinline T** Gecode::Heap::copy (T **d, const T **s, int n) copy T ** d const T ** s int n void * static void* Gecode::Heap::operator new (size_t s) operator new size_t s throw () Allocate memory from heap (disabled) void static void Gecode::Heap::operator delete (void *p) operator delete void * p Free memory allocated from heap (disabled) Gecode::Heap::Heap (const Heap &) Heap const Heap & Copy constructor (disabled) const Heap & const Heap& Gecode::Heap::operator= (const Heap &) operator= const Heap & Assignment operator (disabled) Heap memory management class All routines throw an exception of MemoryExhausted, if a request cannot be fulfilled. Gecode::Heapalloc Gecode::Heapalloc Gecode::Heapalloc Gecode::Heapalloc Gecode::Heapalloc Gecode::Heapalloc Gecode::Heapalloc Gecode::Heapalloc Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapcopy Gecode::Heapfree Gecode::Heapfree Gecode::Heapfree Gecode::Heapfree Gecode::Heapfree Gecode::Heapfree Gecode::Heapfree Gecode::Heapfree Gecode::HeapHeap Gecode::HeapHeap Gecode::Heapoperator delete Gecode::Heapoperator new Gecode::Heapoperator= Gecode::Heapralloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprealloc Gecode::Heaprfree Gecode::Heaprfree Gecode::Heaprrealloc