You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2018/01/11 11:42:22 UTC

[5/8] commons-rng git commit: RNG-43: Deprecate obsolete class.

RNG-43: Deprecate obsolete class.


Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/cc9aeef3
Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/cc9aeef3
Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/cc9aeef3

Branch: refs/heads/master
Commit: cc9aeef3fdf7efa58d66f66136b7c8a64141b366
Parents: c76bd30
Author: Gilles <er...@apache.org>
Authored: Wed Jan 10 17:41:11 2018 +0100
Committer: Gilles <er...@apache.org>
Committed: Wed Jan 10 17:41:11 2018 +0100

----------------------------------------------------------------------
 .../rng/sampling/distribution/BoxMullerLogNormalSampler.java      | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rng/blob/cc9aeef3/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/BoxMullerLogNormalSampler.java
----------------------------------------------------------------------
diff --git a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/BoxMullerLogNormalSampler.java b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/BoxMullerLogNormalSampler.java
index 1db0b7c..373fb91 100644
--- a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/BoxMullerLogNormalSampler.java
+++ b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/BoxMullerLogNormalSampler.java
@@ -22,7 +22,10 @@ import org.apache.commons.rng.UniformRandomProvider;
  * Sampling from a <a href="https://en.wikipedia.org/wiki/Log-normal_distribution">
  * log-normal distribution</a>.
  * Uses {@link BoxMullerNormalizedGaussianSampler} as the underlying sampler.
+ *
+ * {@deprecated} since 1.1. Please use {@link LogNormalSampler} instead.
  */
+@Deprecated
 public class BoxMullerLogNormalSampler
     extends LogNormalSampler {
     /**