fix the build
parent
d46ec3f9b9
commit
5377d740e8
|
@ -54,14 +54,14 @@ public:
|
||||||
RandomUniformRealGenerator() :
|
RandomUniformRealGenerator() :
|
||||||
dist_(),
|
dist_(),
|
||||||
rd_(),
|
rd_(),
|
||||||
re_(rd_()), {
|
re_(rd_()) {
|
||||||
// empty
|
// empty
|
||||||
}
|
}
|
||||||
|
|
||||||
RandomUniformRealGenerator(T min, T max) :
|
RandomUniformRealGenerator(T min, T max) :
|
||||||
dist_(min, max),
|
dist_(min, max),
|
||||||
rd_(),
|
rd_(),
|
||||||
re_(rd_()), {
|
re_(rd_()) {
|
||||||
// empty
|
// empty
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue