Generated on Tue May 22 09:41:06 2018 for Gecode by doxygen 1.6.3

Gecode::SetVarArgs Class Reference

Passing set variables. More...

#include <set.hh>

List of all members.

Constructors and initialization



 SetVarArgs (void)
 Allocate empty array.
 SetVarArgs (int n)
 Allocate array with n elements.
 SetVarArgs (const SetVarArgs &a)
 Initialize from variable argument array a (copy elements).
 SetVarArgs (const VarArray< SetVar > &a)
 Initialize from variable array a (copy elements).
 SetVarArgs (const std::vector< SetVar > &a)
 Initialize from vector a.
template<class InputIterator >
 SetVarArgs (InputIterator first, InputIterator last)
 Initialize from InputIterator first and last.
 SetVarArgs (Space &home, int n, int glbMin, int glbMax, int lubMin, int lubMax, unsigned int minCard=0, unsigned int maxCard=Set::Limits::card)
 Create an array of size n.
 SetVarArgs (Space &home, int n, const IntSet &glb, int lubMin, int lubMax, unsigned int minCard=0, unsigned int maxCard=Set::Limits::card)
 Create an array of size n.
 SetVarArgs (Space &home, int n, int glbMin, int glbMax, const IntSet &lub, unsigned int minCard=0, unsigned int maxCard=Set::Limits::card)
 Create an array of size n.
 SetVarArgs (Space &home, int n, const IntSet &glb, const IntSet &lub, unsigned int minCard=0, unsigned int maxCard=Set::Limits::card)
 Create an array of size n.

Detailed Description

Passing set variables.

We could have used a simple typedef instead, but doxygen cannot resolve some overloading then, leading to unusable documentation for important parts of the library. As long as there is no fix for this, we will keep this workaround.

Definition at line 488 of file set.hh.


Constructor & Destructor Documentation

Gecode::SetVarArgs::SetVarArgs ( void   )  [inline]

Allocate empty array.

Definition at line 48 of file array.hpp.

Gecode::SetVarArgs::SetVarArgs ( int  n  )  [inline, explicit]

Allocate array with n elements.

Definition at line 51 of file array.hpp.

Gecode::SetVarArgs::SetVarArgs ( const SetVarArgs a  )  [inline]

Initialize from variable argument array a (copy elements).

Definition at line 55 of file array.hpp.

Gecode::SetVarArgs::SetVarArgs ( const VarArray< SetVar > &  a  )  [inline]

Initialize from variable array a (copy elements).

Definition at line 59 of file array.hpp.

Gecode::SetVarArgs::SetVarArgs ( const std::vector< SetVar > &  a  )  [inline]

Initialize from vector a.

Definition at line 63 of file array.hpp.

template<class InputIterator >
Gecode::SetVarArgs::SetVarArgs ( InputIterator  first,
InputIterator  last 
) [inline]

Initialize from InputIterator first and last.

Definition at line 68 of file array.hpp.

Gecode::SetVarArgs::SetVarArgs ( Space home,
int  n,
int  glbMin,
int  glbMax,
int  lubMin,
int  lubMax,
unsigned int  minCard = 0,
unsigned int  maxCard = Set::Limits::card 
)

Create an array of size n.

Each variable is initialized with the bounds and cardinality as given by the arguments.

Definition at line 131 of file array.cpp.

Gecode::SetVarArgs::SetVarArgs ( Space home,
int  n,
const IntSet glb,
int  lubMin,
int  lubMax,
unsigned int  minCard = 0,
unsigned int  maxCard = Set::Limits::card 
)

Create an array of size n.

Each variable is initialized with the bounds and cardinality as given by the arguments.

Definition at line 152 of file array.cpp.

Gecode::SetVarArgs::SetVarArgs ( Space home,
int  n,
int  glbMin,
int  glbMax,
const IntSet lub,
unsigned int  minCard = 0,
unsigned int  maxCard = Set::Limits::card 
)

Create an array of size n.

Each variable is initialized with the bounds and cardinality as given by the arguments.

Definition at line 171 of file array.cpp.

Gecode::SetVarArgs::SetVarArgs ( Space home,
int  n,
const IntSet glb,
const IntSet lub,
unsigned int  minCard = 0,
unsigned int  maxCard = Set::Limits::card 
)

Create an array of size n.

Each variable is initialized with the bounds and cardinality as given by the arguments.

Definition at line 192 of file array.cpp.


The documentation for this class was generated from the following files: