Range iterator for a two-dimensional array
More...
#include <const.hpp>
List of all members.
Constructors and initialization |
| ArrayRanges (void) |
| Default constructor.
|
| ArrayRanges (int *ranges, int size) |
| Initialize with ranges for array ranges which is of size size.
|
void | init (int *ranges, int size) |
| Initialize with ranges for array ranges which is of size size.
|
Iteration control |
bool | operator() (void) const |
| Test whether iterator is still at a range or done.
|
void | operator++ (void) |
| Move iterator to next range (if possible)
|
Range access |
int | min (void) const |
| Return smallest value of range.
|
int | max (void) const |
| Return largest value of range.
|
unsigned int | width (void) const |
| Return width of range (distance between minimum and maximum)
|
Detailed Description
Range iterator for a two-dimensional array
Definition at line 44 of file const.hpp.
Constructor & Destructor Documentation
Default constructor.
Definition at line 53 of file const.hpp.
Initialize with ranges for array ranges which is of size size.
Definition at line 55 of file const.hpp.
Member Function Documentation
Initialize with ranges for array ranges which is of size size.
Definition at line 58 of file const.hpp.
bool Gecode::Set::ArrayRanges::operator() |
( |
void |
| ) |
const [inline] |
Test whether iterator is still at a range or done.
Definition at line 66 of file const.hpp.
void Gecode::Set::ArrayRanges::operator++ |
( |
void |
| ) |
[inline] |
Move iterator to next range (if possible)
Definition at line 68 of file const.hpp.
Return smallest value of range.
Definition at line 74 of file const.hpp.
Return largest value of range.
Definition at line 76 of file const.hpp.
Return width of range (distance between minimum and maximum)
Definition at line 78 of file const.hpp.
The documentation for this class was generated from the following file: