1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*=========================================================================
Program: Visualization Toolkit
Module: TestMinimalStandardRandomSequence.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME
// .SECTION Description
// This program tests the vtkMinimalStandardRandomSequence class.
//
// Correctness test is described in first column, page 1195:
// A seed of 1 at step 1 should give a seed of 1043618065 at step 10001.
//
// ref: "Random Number Generators: Good Ones are Hard to Find,"
// by Stephen K. Park and Keith W. Miller in Communications of the ACM,
// 31, 10 (Oct. 1988) pp. 1192-1201.
// Code is at page 1195, "Integer version 2"
#include "vtkMinimalStandardRandomSequence.h"
#include "vtkDebugLeaks.h"
#include "vtkMath.h"
int TestMinimalStandardRandomSequence(int,char *[])
{
vtkMinimalStandardRandomSequence *seq
=vtkMinimalStandardRandomSequence::New();
seq->SetSeedOnly(1);
bool status=true;
// Check seed has been set
status=seq->GetSeed()==1;
if(status)
{
int i=0;
while(i<10000)
{
// cout << "i=" << i << " seed=" << seq->GetSeed()<< endl;
seq->Next();
++i;
}
status=seq->GetSeed()==1043618065;
if(!status)
{
cout << "FAILED: seed is not 1043618065, it is " << seq->GetSeed()
<< endl;
}
}
else
{
cout << "FAILED: seed is not 1, it is " << seq->GetSeed() << endl;
}
vtkMath::RandomSeed(1);
int i=0;
while(i<9997)
{
// cout << "i=" << i << " seed=" << vtkMath::GetSeed() << endl;
vtkMath::Random();
++i;
}
status=vtkMath::GetSeed()==1043618065;
if(!status)
{
cout << "FAILED: static seed is not 1043618065, it is " << vtkMath::GetSeed()
<< endl;
}
seq->SetSeed(1);
i=0;
while(i<9997)
{
// cout << "i=" << i << " seed=" << vtkMath::GetSeed() << endl;
seq->Next();
++i;
}
status=seq->GetSeed()==1043618065;
if(!status)
{
cout << "FAILED: seed auto is not 1043618065, it is " << seq->GetSeed()
<< endl;
}
seq->Delete();
int result;
if(status)
{
// passed.
result=0;
}
else
{
// failed.
result=1;
}
return result;
}
|