Reseeded Well1024aTest.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1226096 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-12-31 14:50:14 +00:00
parent 37d642ec30
commit a02edcfa96
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ public class RandomDataImpl implements RandomData, Serializable {
/** Serializable version identifier */
private static final long serialVersionUID = -626730818244969716L;
/**
/**
* Used when generating Exponential samples.
* Table containing the constants
* q_i = sum_{j=1}^i (ln 2)^j/j! = ln 2 + (ln 2)^2/2 + ... + (ln 2)^i/i!

View File

@ -24,7 +24,7 @@ public class Well1024aTest extends RandomGeneratorAbstractTest {
@Override
protected RandomGenerator makeGenerator() {
return new Well1024a(1000);
return new Well1024a(1001);
}
@Test