我在我定义的类中使用 MTRand(来自http://www.bedaux.net/mtrand/的 Mersenne Twister 随机数生成器)。当我尝试编译时,我得到一个无法解码的意外错误。我是一个新手 C++ 程序员,所以任何帮助都会有很长的路要走......
这是我的代码的相关部分:
#include<iostream>
#include<vector>
#include<deque>
#include<cmath>
#include "./mtrand/mtrand.h"
using namespace std;
class mp{
long double store;
deque< vector<long double> > stack;
long double boundary;
long double dt;
long double time;
MTRand_open random;
long int random_seed;
public:
void initialize(long int, long double, long double);
long double get_state(); // return the state at position int
void update();
friend long double A(mp*);
friend long double D(mp*);
long double normal();
vector <long double> viewCurrent();
};
然后有一个函数,如果调用它,它会为随机数生成器设置一个种子
void mp::initialize(long int rand_seed_input, long double bdry_in, long double dt_in){
time = 0;
dt = dt_in;
random_seed = rand_seed_input;
random.seed(random_seed);
boundary = bdry_in;
}
我只是想测试它是否可以编译,所以我创建了一个完全不执行任何操作的 main 函数:
int main(){
return 0;
}
在编译时,我得到一个错误
Undefined symbols:
"MTRand_int32::seed(unsigned long)", referenced from:
mp::initialize(int, long, long double, long double)in ccJylsHh.o
"MTRand_int32::p", referenced from:
MTRand_int32::rand_int32() in ccJylsHh.o
MTRand_int32::rand_int32() in ccJylsHh.o
MTRand_int32::rand_int32() in ccJylsHh.o
"MTRand_int32::state", referenced from:
MTRand_int32::rand_int32() in ccJylsHh.o
"MTRand_int32::gen_state()", referenced from:
MTRand_int32::rand_int32() in ccJylsHh.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
我不确定这个错误是什么意思,以及应该如何删除它。
据我了解,MTRand 无法弄清楚如何初始化种子......但是 MTRand 类中有一个默认的种子,所以我看不出问题出在哪里。