WN PRNG不工作?(也许)

时间:2014-10-23 22:15:44

标签: c++ random static-libraries prng

我正在尝试使用WELL PRNG的特定实现,据称比原来更好。 link to the code

但是我有一些麻烦。无论我如何播种它,它只输出相同的数字。我认为我可能只是错误地使用它,但却无法弄清楚我的错误。不幸的是,PRNG的来源对我来说完全不透明。

我的代码:

#include <iostream>
#include <WELL44497a_new.h>

void pause()
{
    std::string dummy;
    std::cout << "Press enter to continue...";
    std::getline(std::cin, dummy);
}

int main(int argc, char** argv) {
    using std::cout;
    using std::cin;
    using std::endl;
    cout<<"Hello"<<endl;
    pause();
    unsigned int rngseed;
    cout<<"Input RNG seed:";
    cin>>rngseed;
    cout<<"The RNG seed is:";
    cout<<rngseed<<endl;
    pause();
    InitWELLRNG44497(&rngseed);
    int i=1;
    for (i;i<100;i++){
        unsigned long rngtest=WELLRNG44497();
        cout<<rngtest<<endl;
    }
    pause();
    return 0;
}

1 个答案:

答案 0 :(得分:1)

根据评论 squeamish-ossifrage ,我修改了代码。以下代码似乎有效:

...
cin>>rngseed;
cout<<"The RNG seed is:";
cout<<rngseed<<endl;
pause();
unsigned int rngseed_arr[1391];
int i=0;
for (i;i<1391;i++){
    rngseed_arr[i]=rngseed+i;
}
InitWELLRNG44497(rngseed_arr);
i=1;
...