#include <set>
#include <typeinfo>
#include <vector>
+#include <random>
//! Size of test data sets.
const int THE_TEST_SIZE = 5000;
-namespace {
- // Auxiliary class to use in std::random_shuffle()
- struct RandomGenerator {
- RandomGenerator () { srand(1); }
- ptrdiff_t operator () (ptrdiff_t upper) const { return rand() % upper; }
- };
-}
-
template<class CollectionType, class StlType>
struct CollectionFiller
{
aTimer.Reset();
aTimer.Start();
{
- RandomGenerator aRandomGen;
+ std::random_device ran_dev;
+ std::mt19937 gen(ran_dev());
+ gen.seed(0x03ac38f2);
for (Standard_Integer anIdx = 0; anIdx < 10; ++anIdx)
{
- std::sort (aVector->begin(), aVector->end());
- std::random_shuffle (aVector->begin(), aVector->end(), aRandomGen);
+ std::sort (aVector->begin(), aVector->end());
+ std::shuffle (aVector->begin(), aVector->end(), gen);
}
}
aTimer.Stop();
aTimer.Reset();
aTimer.Start();
{
- RandomGenerator aRandomGen;
+ std::random_device ran_dev;
+ std::mt19937 gen(ran_dev());
+ gen.seed(0x03ac38f2);
for (Standard_Integer anIdx = 0; anIdx < 10; ++anIdx)
{
- std::sort (aCollec->begin(), aCollec->end());
- std::random_shuffle (aCollec->begin(), aCollec->end(), aRandomGen);
+ std::sort (aCollec->begin(), aCollec->end());
+ std::shuffle (aCollec->begin(), aCollec->end(), gen);
}
}
aTimer.Stop();
// check that result is the same
if ( ! std::equal (aVector->begin(), aVector->end(), aCollec->begin()) )
- di << "Error: sequences are not the same at the end!\n";
+ di << "Error: sequences are not the same at the end (random iterator)!\n";
delete aVector;
delete aCollec;
// check that result is the same
if ( ! std::equal (aVector->begin(), aVector->end(), aCollec->begin()) )
- di << "Error: sequences are not the same at the end!\n";
+ di << "Error: sequences are not the same at the end (forward iterator)!\n";
delete aVector;
delete aCollec;
// check that result is the same
if ( ! std::equal (aVector->begin(), aVector->end(), aCollec->begin()) )
- di << "Error: sequences are not the same at the end!\n";
+ di << "Error: sequences are not the same at the end (bidir iterator)!\n";
delete aVector;
delete aCollec;