Argument array for variables. More...
#include <array.hpp>
Classes | |
class | VarLess |
Sort order for variables. More... | |
Public Member Functions | |
bool | assigned (void) const |
Test if all variables are assigned. | |
Friends | |
ArrayTraits< VarArgArray< Var > >::ArgsType | operator+ (const VarArgArray< Var > &x, const VarArgArray< Var > &y) |
ArrayTraits< VarArgArray< Var > >::ArgsType | operator+ (const VarArgArray< Var > &x, const Var &y) |
ArrayTraits< VarArgArray< Var > >::ArgsType | operator+ (const Var &x, const VarArgArray< Var > &y) |
Constructors and initialization | |
VarArgArray (void) | |
Allocate empty array. | |
VarArgArray (int n) | |
Allocate array with n elements. | |
VarArgArray (const VarArgArray< Var > &a) | |
Initialize from variable argument array a (copy elements) | |
VarArgArray (const VarArray< Var > &a) | |
Initialize from variable array a (copy elements) | |
Array elements | |
ArrayTraits< VarArgArray< Var > >::ArgsType | slice (int start, int inc=1, int n=-1) |
Return slice ![]() ![]() ![]() | |
Appending elements | |
ArrayTraits< VarArgArray< Var > >::ArgsType & | operator<< (const Var &x) |
Insert a new element x at the end of the array (increase size by 1) | |
ArrayTraits< VarArgArray< Var > >::ArgsType & | operator<< (const VarArgArray< Var > &x) |
Append x to the end of the array. | |
Variable equality | |
bool | same (const Space &home) const |
Test whether array contains same variable multiply. | |
bool | same (const Space &home, const Var &y) const |
Test whether array contains variable y. | |
bool | same (const Space &home, const VarArgArray< Var > &y) const |
Test whether all elements from array and y contains same variable multiply. |
Argument array for variables.
Argument arrays are used as convenient mechanism of passing arguments when calling functions as they combine both the size and the elements of an array. For a small number of elements, memory is allocated by creating an argument array object. Otherwise the memory is allocated from the heap.
Gecode::VarArgArray< Var >::VarArgArray | ( | void | ) | [inline] |
Gecode::VarArgArray< Var >::VarArgArray | ( | int | n | ) | [inline, explicit] |
Gecode::VarArgArray< Var >::VarArgArray | ( | const VarArgArray< Var > & | a | ) | [inline] |
Gecode::VarArgArray< Var >::VarArgArray | ( | const VarArray< Var > & | a | ) | [inline] |
ArrayTraits< VarArgArray< Var > >::ArgsType Gecode::VarArgArray< Var >::slice | ( | int | start, |
int | inc = 1 , |
||
int | n = -1 |
||
) | [inline] |
Return slice of length n such that forall
,
.
Reimplemented from Gecode::ArgArrayBase< Var >.
ArrayTraits< VarArgArray< Var > >::ArgsType & Gecode::VarArgArray< Var >::operator<< | ( | const Var & | x | ) | [inline] |
ArrayTraits< VarArgArray< Var > >::ArgsType & Gecode::VarArgArray< Var >::operator<< | ( | const VarArgArray< Var > & | x | ) | [inline] |
bool Gecode::VarArgArray< Var >::assigned | ( | void | ) | const [inline] |
bool Gecode::VarArgArray< Var >::same | ( | const Space & | home | ) | const |
bool Gecode::VarArgArray< Var >::same | ( | const Space & | home, |
const Var & | y | ||
) | const |
bool Gecode::VarArgArray< Var >::same | ( | const Space & | home, |
const VarArgArray< Var > & | y | ||
) | const |
ArrayTraits<VarArgArray<Var> >::ArgsType operator+ | ( | const VarArgArray< Var > & | x, |
const VarArgArray< Var > & | y | ||
) | [friend] |
ArrayTraits<VarArgArray<Var> >::ArgsType operator+ | ( | const VarArgArray< Var > & | x, |
const Var & | y | ||
) | [friend] |
ArrayTraits<VarArgArray<Var> >::ArgsType operator+ | ( | const Var & | x, |
const VarArgArray< Var > & | y | ||
) | [friend] |