Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MATH-1598: Remove UniformRandomGenerator, replaced by ContinuousUnifo… #189

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
* Multivariate Normal Distribution</a>. The approach using a Cholesky
* decomposition is quite usual in this case. However, it can be extended
* to other cases as long as the underlying random generator provides
* {@link NormalizedRandomGenerator normalized values} like
* {@link UniformRandomGenerator}.</p>
* {@link NormalizedRandomGenerator normalized values}
* <p>Sometimes, the covariance matrix for a given simulation is not
* strictly positive definite. This means that the correlations are
* not all independent from each other. In this case, however, the non
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@
* equal to 0 and standard deviation equal to 1.
* Generated values fall in the range \( [-\sqrt{3}, +\sqrt{3}] \).
* </p>
*
* @since 1.2
* @deprecated As of 4.0. Please use {@link org.apache.commons.rng.sampling.distribution.ContinuousUniformSampler} instead.
*/
@Deprecated
public class UniformRandomGenerator implements NormalizedRandomGenerator {
/** Square root of three. */
private static final double SQRT3 = AccurateMath.sqrt(3);
Expand Down