Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

QuasiRandomSequenceIterator& Impala::Util::QuasiRandomSequenceIterator::operator++ (  )  [inline]

only the prefix ++ is implemented, the postfix would have to return a copy

Definition at line 28 of file QuasiRandomSequenceIterator.h.

References mCurrent, mPickout, and mSequence.

00029     {
00030         mCurrent = mSequence.erase(mCurrent);
00031         if(mCurrent == mSequence.end())
00032             mCurrent = mSequence.begin();
00033         if(mSequence.size() > 0)
00034             for(int i=mPickout ; i>0 ; --i)
00035             {
00036                 ++mCurrent;
00037                 if(mCurrent == mSequence.end())
00038                     mCurrent = mSequence.begin();
00039             }
00040         return *this;
00041     }


Generated on Thu Jan 13 09:24:20 2011 for ImpalaSrc by  doxygen 1.5.1