|
typedef FloatVar | value_type |
| Type of the variable stored in this array.
|
typedef FloatVar & | reference |
| Type of a reference to the value type.
|
typedef const FloatVar & | const_reference |
| Type of a constant reference to the value type.
|
typedef FloatVar * | pointer |
| Type of a pointer to the value type.
|
typedef const FloatVar * | const_pointer |
| Type of a read-only pointer to the value type.
|
typedef FloatVar * | iterator |
| Type of the iterator used to iterate through this array's elements.
|
typedef const FloatVar * | const_iterator |
| Type of the iterator used to iterate read-only through this array's elements.
|
typedef std::reverse_iterator< FloatVar * > | reverse_iterator |
| Type of the iterator used to iterate backwards through this array's elements.
|
typedef std::reverse_iterator< const FloatVar * > | const_reverse_iterator |
| Type of the iterator used to iterate backwards and read-only through this array's elements.
|
| VarArray (void) |
| Default constructor (array of size 0)
|
const VarArray< FloatVar > & | operator= (const VarArray< FloatVar > &a) |
| Initialize from variable array a (share elements)
|
int | size (void) const |
| Return size of array (number of elements)
|
FloatVar & | operator[] (int i) |
| Return variable at position i.
|
ArrayTraits< VarArgArray< FloatVar > >::ArgsType | slice (int start, int inc=1, int n=-1) |
iterator | begin (void) |
| Return an iterator at the beginning of the array.
|
iterator | end (void) |
| Return an iterator past the end of the array.
|
reverse_iterator | rbegin (void) |
| Return a reverse iterator at the end of the array.
|
reverse_iterator | rend (void) |
| Return a reverse iterator past the beginning of the array.
|
bool | assigned (void) const |
| Test if all variables are assigned.
|
void | update (Space &home, VarArray< FloatVar > &a) |
| Update array to be a clone of array a.
|
int | n |
| Number of variables (size)
|
FloatVar * | x |
| Array of variables.
|
ArrayTraits< VarArray< T > >::ArgsType | operator+ (const VarArray< T > &x, const VarArgArray< T > &y) |
ArrayTraits< VarArray< T > >::ArgsType | operator+ (const VarArray< T > &x, const VarArray< T > &y) |
ArrayTraits< VarArray< T > >::ArgsType | operator+ (const VarArgArray< T > &x, const VarArray< T > &y) |
ArrayTraits< VarArray< T > >::ArgsType | operator+ (const VarArray< T > &x, const T &y) |
ArrayTraits< VarArray< T > >::ArgsType | operator+ (const T &x, const VarArray< T > &y) |
std::basic_ostream< Char, Traits > & | operator<< (std::basic_ostream< Char, Traits > &os, const VarArray< FloatVar > &x) |
| Print array elements enclosed in curly brackets.
|
Float variable array.
Definition at line 1033 of file float.hh.