FuncMemSpace Space-memory management Gecode::FreeList Gecode::RangeList Gecode::MemoryConfig class T T * T* Gecode::Space::alloc (long unsigned int n) alloc long unsigned int n Allocate block of n objects of type T from space heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T T * T* Gecode::Space::alloc (long int n) alloc long int n Allocate block of n objects of type T from space heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T T * T* Gecode::Space::alloc (unsigned int n) alloc unsigned int n Allocate block of n objects of type T from space heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T T * T* Gecode::Space::alloc (int n) alloc int n Allocate block of n objects of type T from space heap. Note that this function implements C++ semantics: the default constructor of T is run for all n objects. class T void void Gecode::Space::free (T *b, long unsigned int n) free T * b long unsigned int n Delete n objects allocated from space heap starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects.Note that the memory is not freed, it is just scheduled for later reusal. class T void void Gecode::Space::free (T *b, long int n) free T * b long int n Delete n objects allocated from space heap starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects.Note that the memory is not freed, it is just scheduled for later reusal. class T void void Gecode::Space::free (T *b, unsigned int n) free T * b unsigned int n Delete n objects allocated from space heap starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects.Note that the memory is not freed, it is just scheduled for later reusal. class T void void Gecode::Space::free (T *b, int n) free T * b int n Delete n objects allocated from space heap starting at b. Note that this function implements C++ semantics: the destructor of T is run for all n objects.Note that the memory is not freed, it is just scheduled for later reusal. class T T * T* Gecode::Space::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 the space 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::Space::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 the space 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::Space::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 the space 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::Space::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 the space 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::Space::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 the space heap. Returns the address of the new block.This is a specialization for performance. class T T ** T** Gecode::Space::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 the space heap. Returns the address of the new block.This is a specialization for performance. class T T ** T** Gecode::Space::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 the space heap. Returns the address of the new block.This is a specialization for performance. class T T ** T** Gecode::Space::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 the space heap. Returns the address of the new block.This is a specialization for performance. void * forceinline void * Gecode::Space::ralloc (size_t s) ralloc size_t s Allocate memory on space heap. void forceinline void Gecode::Space::rfree (void *p, size_t s) rfree void * p size_t s Free memory previously allocated with alloc (might be reused later) void * forceinline void * Gecode::Space::rrealloc (void *b, size_t n, size_t m) rrealloc void * b size_t n size_t m Reallocate memory block starting at b from size n to size s. size_t void * void* Gecode::Space::fl_alloc (void) fl_alloc void Allocate from freelist-managed memory. size_t void void Gecode::Space::fl_dispose (FreeList *f, FreeList *l) fl_dispose FreeList * f FreeList * l Return freelist-managed memory to freelist. The first list element to be retuned is f, the last is l. GECODE_KERNEL_EXPORT void GECODE_KERNEL_EXPORT void Gecode::Space::flush (void) flush void Flush cached memory blocks. All spaces that are obtained as non-shared clones from some same space try to cache memory blocks from failed spaces. To minimize memory consumption, these blocks can be flushed.