#include <QuasiRandomSequenceIterator.h>
Collaboration diagram for Impala::Util::QuasiRandomSequenceIterator:
Public Member Functions | |
QuasiRandomSequenceIterator (int length, int seed) | |
int | operator * () const |
Indirection operator, like stl iterators. | |
QuasiRandomSequenceIterator & | operator++ () |
only the prefix ++ is implemented, the postfix would have to return a copy | |
Private Attributes | |
std::list< int > | mSequence |
int | mPickout |
std::list< int >::iterator | mCurrent |
Definition at line 9 of file QuasiRandomSequenceIterator.h.