Gecode::VarArgArray< Var > Class Template Reference
[Programming variables]
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). | |
VarArgArray (const std::vector< Var > &a) | |
Initialize from vector a. | |
template<class InputIterator > | |
VarArgArray (InputIterator first, InputIterator last) | |
Initialize from InputIterator first and last. | |
Array elements | |
| |
ArrayTraits< VarArgArray< Var > >::ArgsType | slice (int start, int inc=1, int n=-1) |
Return slice of length n such that forall , . | |
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. |
Detailed Description
template<class Var>
class Gecode::VarArgArray< Var >
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.
Definition at line 843 of file array.hpp.
Constructor & Destructor Documentation
template<class Var >
Gecode::VarArgArray< Var >::VarArgArray | ( | void | ) | [inline] |
template<class Var >
Gecode::VarArgArray< Var >::VarArgArray | ( | int | n | ) | [inline, explicit] |
template<class Var>
Gecode::VarArgArray< Var >::VarArgArray | ( | const VarArgArray< Var > & | a | ) | [inline] |
template<class Var>
Gecode::VarArgArray< Var >::VarArgArray | ( | const VarArray< Var > & | a | ) | [inline] |
template<class Var>
Gecode::VarArgArray< Var >::VarArgArray | ( | const std::vector< Var > & | a | ) | [inline] |
template<class Var >
template<class InputIterator >
Gecode::VarArgArray< Var >::VarArgArray | ( | InputIterator | first, | |
InputIterator | last | |||
) | [inline] |
Member Function Documentation
template<class Var >
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 >.
template<class Var>
ArrayTraits< VarArgArray< Var > >::ArgsType & Gecode::VarArgArray< Var >::operator<< | ( | const Var & | x | ) | [inline] |
template<class Var>
ArrayTraits< VarArgArray< Var > >::ArgsType & Gecode::VarArgArray< Var >::operator<< | ( | const VarArgArray< Var > & | x | ) | [inline] |
template<class Var >
bool Gecode::VarArgArray< Var >::assigned | ( | void | ) | const [inline] |
template<class Var >
bool Gecode::VarArgArray< Var >::same | ( | const Space & | home | ) | const [inline] |
template<class Var>
bool Gecode::VarArgArray< Var >::same | ( | const Space & | home, | |
const Var & | y | |||
) | const [inline] |
template<class Var>
bool Gecode::VarArgArray< Var >::same | ( | const Space & | home, | |
const VarArgArray< Var > & | y | |||
) | const [inline] |
Friends And Related Function Documentation
template<class Var>
ArrayTraits< VarArgArray< Var > >::ArgsType operator+ | ( | const VarArgArray< Var > & | x, | |
const VarArgArray< Var > & | y | |||
) | [friend] |
template<class Var>
ArrayTraits< VarArgArray< Var > >::ArgsType operator+ | ( | const VarArgArray< Var > & | x, | |
const Var & | y | |||
) | [friend] |
template<class Var>
ArrayTraits< VarArgArray< Var > >::ArgsType operator+ | ( | const Var & | x, | |
const VarArgArray< Var > & | y | |||
) | [friend] |
The documentation for this class was generated from the following file:
- gecode/kernel/array.hpp (Revision: 15170)