You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@commons.apache.org by er...@apache.org on 2017/04/20 11:33:54 UTC

svn commit: r1010778 [39/39] - in /websites/production/commons/content/proper/commons-rng: ./ commons-rng-client-api/ commons-rng-client-api/apidocs/ commons-rng-client-api/apidocs/org/apache/commons/rng/ commons-rng-client-api/apidocs/org/apache/commo...

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/PoissonSampler.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/PoissonSampler.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/PoissonSampler.html Thu Apr 20 11:33:45 2017
@@ -54,7 +54,7 @@
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>      <em class="jxr_javadoccomment">/** Exponential. */</em>
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSampler.html">ContinuousSampler</a> exponential;
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>      <em class="jxr_javadoccomment">/** Gaussian. */</em>
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSampler.html">ContinuousSampler</a> gaussian;
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/NormalizedGaussianSampler.html">NormalizedGaussianSampler</a> gaussian;
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>      <em class="jxr_javadoccomment">/** {@code log(n!)}. */</em>
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> InternalUtils.FactorialLog factorialLog;
 <a class="jxr_linenumber" name="L52" href="#L52">52</a>  
@@ -72,7 +72,7 @@
 <a class="jxr_linenumber" name="L64" href="#L64">64</a>  
 <a class="jxr_linenumber" name="L65" href="#L65">65</a>          <strong class="jxr_keyword">this</strong>.mean = mean;
 <a class="jxr_linenumber" name="L66" href="#L66">66</a>  
-<a class="jxr_linenumber" name="L67" href="#L67">67</a>          gaussian = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/BoxMullerGaussianSampler.html">BoxMullerGaussianSampler</a>(rng, 0, 1);
+<a class="jxr_linenumber" name="L67" href="#L67">67</a>          gaussian = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/MarsagliaNormalizedGaussianSampler.html">MarsagliaNormalizedGaussianSampler</a>(rng);
 <a class="jxr_linenumber" name="L68" href="#L68">68</a>          exponential = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/AhrensDieterExponentialSampler.html">AhrensDieterExponentialSampler</a>(rng, 1);
 <a class="jxr_linenumber" name="L69" href="#L69">69</a>          factorialLog = mean &lt; PIVOT ?
 <a class="jxr_linenumber" name="L70" href="#L70">70</a>              <strong class="jxr_keyword">null</strong> : <em class="jxr_comment">// Not used.</em>
@@ -126,13 +126,13 @@
 <a class="jxr_linenumber" name="L118" href="#L118">118</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> p2 = a2 / aSum;
 <a class="jxr_linenumber" name="L119" href="#L119">119</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> c1 = 1 / (8 * lambda);
 <a class="jxr_linenumber" name="L120" href="#L120">120</a> 
-<a class="jxr_linenumber" name="L121" href="#L121">121</a>             <strong class="jxr_keyword">double</strong> x = 0;
-<a class="jxr_linenumber" name="L122" href="#L122">122</a>             <strong class="jxr_keyword">double</strong> y = 0;
-<a class="jxr_linenumber" name="L123" href="#L123">123</a>             <strong class="jxr_keyword">double</strong> v = 0;
-<a class="jxr_linenumber" name="L124" href="#L124">124</a>             <strong class="jxr_keyword">int</strong> a = 0;
-<a class="jxr_linenumber" name="L125" href="#L125">125</a>             <strong class="jxr_keyword">double</strong> t = 0;
-<a class="jxr_linenumber" name="L126" href="#L126">126</a>             <strong class="jxr_keyword">double</strong> qr = 0;
-<a class="jxr_linenumber" name="L127" href="#L127">127</a>             <strong class="jxr_keyword">double</strong> qa = 0;
+<a class="jxr_linenumber" name="L121" href="#L121">121</a>             <strong class="jxr_keyword">double</strong> x;
+<a class="jxr_linenumber" name="L122" href="#L122">122</a>             <strong class="jxr_keyword">double</strong> y;
+<a class="jxr_linenumber" name="L123" href="#L123">123</a>             <strong class="jxr_keyword">double</strong> v;
+<a class="jxr_linenumber" name="L124" href="#L124">124</a>             <strong class="jxr_keyword">int</strong> a;
+<a class="jxr_linenumber" name="L125" href="#L125">125</a>             <strong class="jxr_keyword">double</strong> t;
+<a class="jxr_linenumber" name="L126" href="#L126">126</a>             <strong class="jxr_keyword">double</strong> qr;
+<a class="jxr_linenumber" name="L127" href="#L127">127</a>             <strong class="jxr_keyword">double</strong> qa;
 <a class="jxr_linenumber" name="L128" href="#L128">128</a>             <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">true</strong>) {
 <a class="jxr_linenumber" name="L129" href="#L129">129</a>                 <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> u = nextDouble();
 <a class="jxr_linenumber" name="L130" href="#L130">130</a>                 <strong class="jxr_keyword">if</strong> (u &lt;= p1) {
@@ -191,6 +191,6 @@
 <a class="jxr_linenumber" name="L183" href="#L183">183</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/RejectionInversionZipfSampler.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/RejectionInversionZipfSampler.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/RejectionInversionZipfSampler.html Thu Apr 20 11:33:45 2017
@@ -250,6 +250,6 @@
 <a class="jxr_linenumber" name="L242" href="#L242">242</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/SamplerBase.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/SamplerBase.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/SamplerBase.html Thu Apr 20 11:33:45 2017
@@ -71,6 +71,6 @@
 <a class="jxr_linenumber" name="L63" href="#L63">63</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/package-frame.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.sampling.distribution</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.sampling.distribution</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -28,6 +28,9 @@
             	<a href="BoxMullerLogNormalSampler.html" target="classFrame">BoxMullerLogNormalSampler</a>
           	</li>
           	          	<li>
+            	<a href="BoxMullerNormalizedGaussianSampler.html" target="classFrame">BoxMullerNormalizedGaussianSampler</a>
+          	</li>
+          	          	<li>
             	<a href="ChengBetaSampler.html" target="classFrame">ChengBetaSampler</a>
           	</li>
           	          	<li>
@@ -52,6 +55,9 @@
             	<a href="InternalUtils.html" target="classFrame">FactorialLog</a>
           	</li>
           	          	<li>
+            	<a href="GaussianSampler.html" target="classFrame">GaussianSampler</a>
+          	</li>
+          	          	<li>
             	<a href="InternalGamma.html" target="classFrame">InternalGamma</a>
           	</li>
           	          	<li>
@@ -67,6 +73,15 @@
             	<a href="InverseTransformParetoSampler.html" target="classFrame">InverseTransformParetoSampler</a>
           	</li>
           	          	<li>
+            	<a href="MarsagliaLogNormalSampler.html" target="classFrame">MarsagliaLogNormalSampler</a>
+          	</li>
+          	          	<li>
+            	<a href="MarsagliaNormalizedGaussianSampler.html" target="classFrame">MarsagliaNormalizedGaussianSampler</a>
+          	</li>
+          	          	<li>
+            	<a href="NormalizedGaussianSampler.html" target="classFrame">NormalizedGaussianSampler</a>
+          	</li>
+          	          	<li>
             	<a href="PoissonSampler.html" target="classFrame">PoissonSampler</a>
           	</li>
           	          	<li>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/distribution/package-summary.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.sampling.distribution</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.sampling.distribution</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -57,6 +57,11 @@
             	</tr>
 				            	<tr>
               		<td>
+                		<a href="BoxMullerNormalizedGaussianSampler.html" target="classFrame">BoxMullerNormalizedGaussianSampler</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
                 		<a href="ChengBetaSampler.html" target="classFrame">ChengBetaSampler</a>
               		</td>
             	</tr>
@@ -97,6 +102,11 @@
             	</tr>
 				            	<tr>
               		<td>
+                		<a href="GaussianSampler.html" target="classFrame">GaussianSampler</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
                 		<a href="InternalGamma.html" target="classFrame">InternalGamma</a>
               		</td>
             	</tr>
@@ -122,6 +132,21 @@
             	</tr>
 				            	<tr>
               		<td>
+                		<a href="MarsagliaLogNormalSampler.html" target="classFrame">MarsagliaLogNormalSampler</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="MarsagliaNormalizedGaussianSampler.html" target="classFrame">MarsagliaNormalizedGaussianSampler</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="NormalizedGaussianSampler.html" target="classFrame">NormalizedGaussianSampler</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
                 		<a href="PoissonSampler.html" target="classFrame">PoissonSampler</a>
               		</td>
             	</tr>
@@ -158,7 +183,7 @@
       	</div>
 				<hr />
 		<div id="footer">
-			Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/package-frame.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.sampling</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.sampling</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/sampling/package-summary.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.sampling</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.sampling</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -73,7 +73,7 @@
       	</div>
 				<hr />
 		<div id="footer">
-			Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/JDKRandomBridge.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/JDKRandomBridge.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/JDKRandomBridge.html Thu Apr 20 11:33:45 2017
@@ -134,6 +134,6 @@
 <a class="jxr_linenumber" name="L126" href="#L126">126</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/RandomSource.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/RandomSource.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/RandomSource.html Thu Apr 20 11:33:45 2017
@@ -519,6 +519,6 @@
 <a class="jxr_linenumber" name="L511" href="#L511">511</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ByteArray2IntArray.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ByteArray2IntArray.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ByteArray2IntArray.html Thu Apr 20 11:33:45 2017
@@ -49,6 +49,6 @@
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ByteArray2LongArray.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ByteArray2LongArray.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ByteArray2LongArray.html Thu Apr 20 11:33:45 2017
@@ -49,6 +49,6 @@
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Int2Long.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Int2Long.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Int2Long.html Thu Apr 20 11:33:45 2017
@@ -41,6 +41,6 @@
 <a class="jxr_linenumber" name="L33" href="#L33">33</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/IntArray2Int.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/IntArray2Int.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/IntArray2Int.html Thu Apr 20 11:33:45 2017
@@ -43,6 +43,6 @@
 <a class="jxr_linenumber" name="L35" href="#L35">35</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/IntArray2LongArray.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/IntArray2LongArray.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/IntArray2LongArray.html Thu Apr 20 11:33:45 2017
@@ -48,6 +48,6 @@
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2Int.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2Int.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2Int.html Thu Apr 20 11:33:45 2017
@@ -40,6 +40,6 @@
 <a class="jxr_linenumber" name="L32" href="#L32">32</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2IntArray.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2IntArray.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2IntArray.html Thu Apr 20 11:33:45 2017
@@ -52,6 +52,6 @@
 <a class="jxr_linenumber" name="L44" href="#L44">44</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2LongArray.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2LongArray.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/Long2LongArray.html Thu Apr 20 11:33:45 2017
@@ -58,6 +58,6 @@
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/LongArray2IntArray.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/LongArray2IntArray.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/LongArray2IntArray.html Thu Apr 20 11:33:45 2017
@@ -47,6 +47,6 @@
 <a class="jxr_linenumber" name="L39" href="#L39">39</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/LongArray2Long.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/LongArray2Long.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/LongArray2Long.html Thu Apr 20 11:33:45 2017
@@ -43,6 +43,6 @@
 <a class="jxr_linenumber" name="L35" href="#L35">35</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/NoOpConverter.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/NoOpConverter.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/NoOpConverter.html Thu Apr 20 11:33:45 2017
@@ -42,6 +42,6 @@
 <a class="jxr_linenumber" name="L34" href="#L34">34</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ProviderBuilder.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ProviderBuilder.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/ProviderBuilder.html Thu Apr 20 11:33:45 2017
@@ -375,6 +375,6 @@
 <a class="jxr_linenumber" name="L367" href="#L367">367</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedConverter.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedConverter.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedConverter.html Thu Apr 20 11:33:45 2017
@@ -43,6 +43,6 @@
 <a class="jxr_linenumber" name="L35" href="#L35">35</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedConverterComposer.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedConverterComposer.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedConverterComposer.html Thu Apr 20 11:33:45 2017
@@ -58,6 +58,6 @@
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedFactory.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedFactory.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/SeedFactory.html Thu Apr 20 11:33:45 2017
@@ -271,6 +271,6 @@
 <a class="jxr_linenumber" name="L263" href="#L263">263</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/package-frame.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.simple.internal</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.simple.internal</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/internal/package-summary.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.simple.internal</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.simple.internal</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -143,7 +143,7 @@
       	</div>
 				<hr />
 		<div id="footer">
-			Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/package-frame.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.simple</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.simple</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/org/apache/commons/rng/simple/package-summary.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference Package org.apache.commons.rng.simple</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference Package org.apache.commons.rng.simple</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -68,7 +68,7 @@
       	</div>
 				<hr />
 		<div id="footer">
-			Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file

Modified: websites/production/commons/content/proper/commons-rng/xref/overview-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/overview-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/overview-frame.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -43,6 +43,9 @@
 				<a href="org/apache/commons/rng/jmh/package-frame.html" target="packageFrame">org.apache.commons.rng.jmh</a>
 			</li>
 						<li>
+				<a href="org/apache/commons/rng/jmh/distribution/package-frame.html" target="packageFrame">org.apache.commons.rng.jmh.distribution</a>
+			</li>
+						<li>
 				<a href="org/apache/commons/rng/sampling/package-frame.html" target="packageFrame">org.apache.commons.rng.sampling</a>
 			</li>
 						<li>

Modified: websites/production/commons/content/proper/commons-rng/xref/overview-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref/overview-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref/overview-summary.html Thu Apr 20 11:33:45 2017
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Commons RNG 1.0 Reference</title>
+		<title>Apache Commons RNG 1.1-SNAPSHOT Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -24,7 +24,7 @@
 	        </ul>
       	</div>
 		
-		      	<h2>Apache Commons RNG 1.0 Reference</h2>
+		      	<h2>Apache Commons RNG 1.1-SNAPSHOT Reference</h2>
 
 		<table class="summary">
         	<thead>
@@ -80,6 +80,11 @@
             	</tr>
 	          	            	<tr>
               		<td>
+                		<a href="org/apache/commons/rng/jmh/distribution/package-summary.html">org.apache.commons.rng.jmh.distribution</a>
+              		</td>
+            	</tr>
+	          	            	<tr>
+              		<td>
                 		<a href="org/apache/commons/rng/sampling/package-summary.html">org.apache.commons.rng.sampling</a>
               		</td>
             	</tr>
@@ -120,7 +125,7 @@
 		
 		<hr />
 		<div id="footer">
-			Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2016&#x2013;2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file