Modified: 
websites/production/commons/content/proper/commons-rng/userguide/index.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/userguide/index.html 
(original)
+++ websites/production/commons/content/proper/commons-rng/userguide/index.html 
Thu Apr 20 11:33:45 2017
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 12 December 2016
+ | Generated by Apache Maven Doxia at 09 April 2017
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20161212" />
+    <meta name="Date-Revision-yyyymmdd" content="20170409" />
     <meta http-equiv="Content-Language" content="en" />
     <title>RNG &#x2013; The Commons RNG User Guide - Table of Contents</title>
 
@@ -40,8 +40,8 @@
           <a class="brand" 
href="http://commons.apache.org/proper/commons-rng/";>Apache Commons RNG 
&trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 12 December 2016</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.0</li>
+            <li id="publishDate">Last Published: 09 April 2017</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.1-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -268,7 +268,7 @@
     </div>
 
     <div class="footer">
-      <p>Copyright &copy;                    2016
+      <p>Copyright &copy;                    2016-2017
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All Rights Reserved.</p>
                                                                   

Modified: 
websites/production/commons/content/proper/commons-rng/userguide/rng.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/userguide/rng.html 
(original)
+++ websites/production/commons/content/proper/commons-rng/userguide/rng.html 
Thu Apr 20 11:33:45 2017
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 12 December 2016
+ | Generated by Apache Maven Doxia at 20 April 2017
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20161212" />
+    <meta name="Date-Revision-yyyymmdd" content="20170420" />
     <meta http-equiv="Content-Language" content="en" />
     <title>RNG &#x2013; The Apache Commons RNG User Guide</title>
 
@@ -40,8 +40,8 @@
           <a class="brand" 
href="http://commons.apache.org/proper/commons-rng/";>Apache Commons RNG 
&trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 12 December 2016</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.0</li>
+            <li id="publishDate">Last Published: 20 April 2017</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.1-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -335,10 +335,11 @@ rngNew.restoreState(stateNew);</pre></di
 <li>Generation of random deviates for various <a 
href="../commons-rng-sampling/apidocs/org/apache/commons/rng/sampling/distribution/package-summary.html">distributions</a>.
 <div class="source">
 <pre>import org.apache.commons.rng.sampling.distribution.ContinuousSampler;
-import org.apache.commons.rng.sampling.distribution.BoxMullerGaussianSampler;
+import org.apache.commons.rng.sampling.distribution.GaussianSampler;
+import 
org.apache.commons.rng.sampling.distribution.MarsagliaNormalizedGaussianSampler;
 
-ContinuousSampler sampler = new 
BoxMullerGaussianSampler(RandomSource.create(RandomSource.MT_64),
-                                                         45.6, 2.3);
+ContinuousSampler sampler = new GaussianSampler(new 
MarsagliaNormalizedGaussianSampler(RandomSource.create(RandomSource.MT_64)),
+                                                45.6, 2.3);
 double random = sampler.sample();</pre></div>
 <div class="source">
 <pre>import org.apache.commons.rng.sampling.distribution.DiscreteSampler;
@@ -377,13 +378,13 @@ String word = sampler.sample().get(0);</
 <p>The API for instantiating generators is defined in package <a 
href="../commons-rng-simple/apidocs/org/apache/commons/rng/simple/package-summary.html">org.apache.commons.rng.simple</a>.</p>
 <ul>
 <li>Enum <tt>RandomSource</tt> determines which algorithm to use for 
generating the sequence of random values.</li></ul>
-<p>The <tt>org.apache.commons.rng.simple.internal</tt> package contain classes 
for supporting initialization (a.k.a. &quot;seeding&quot;) of the generators. 
They must not be used directly in applications, as all the necessary utilities 
are accessible through methods defined in <tt>RandomSource</tt>.</p>
+<p>The <tt>org.apache.commons.rng.simple.internal</tt> package contains 
classes for supporting initialization (a.k.a. &quot;seeding&quot;) of the 
generators. They must not be used directly in applications, as all the 
necessary utilities are accessible through methods defined in 
<tt>RandomSource</tt>.</p>
 <ul>
 <li><tt>ProviderBuilder</tt>: contains methods for instantiating the concrete 
RNG implementations based on the source identifier; it also takes care of 
calling the appropriate classes for seed type conversion.</li>
 <li><tt>SeedFactory</tt>: contains factory methods for generating random 
seeds.</li>
 <li><tt>SeedConverter</tt>: interface for classes that transform between 
supported seed types.</li>
 <li>Various classes that implement <tt>SeedConverter</tt> in order to 
transform from caller's seed to &quot;native&quot; seed.</li></ul>
-<p>The <a 
href="../commons-rng-core/apidocs/org/apache/commons/rng/core/package-summary.html">org.apache.commons.rng.core</a>.
 package contain the implementation of the algorithms for the generation of 
pseudo-random sequences. Applications should not directly import or use classes 
defined in this package: all generators can be instantiated through the 
<tt>RandomSource</tt> factory.</p>
+<p>The <a 
href="../commons-rng-core/apidocs/org/apache/commons/rng/core/package-summary.html">org.apache.commons.rng.core</a>
 package contains the implementation of the algorithms for the generation of 
pseudo-random sequences. Applications should not directly import or use classes 
defined in this package: all generators can be instantiated through the 
<tt>RandomSource</tt> factory.</p>
 <ul>
 <li>Class <tt>RandomProviderDefaultState</tt> implements the 
<tt>RandomProviderState</tt> interface to enable &quot;save/restore&quot; for 
all <tt>RestorableUniformRandomProvider</tt> instances created through the 
<tt>RandomSource</tt> factory methods.</li>
 <li><tt>BaseProvider</tt>: base class for all concrete RNG implementations; it 
contains higher-level algorithms <tt>nextInt(int n)</tt> and <tt>nextLong(long 
n)</tt> common to all implementations.</li>
@@ -406,166 +407,266 @@ String word = sampler.sample().get(0);</
 <p>All runs were performed on a platform with the following 
characteristics:</p>
 <ul>
 <li>CPU: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz</li>
-<li>Java runtime: 1.7.0_95-b00</li>
-<li>JVM: OpenJDK 64-Bit Server VM 24.95-b01</li></ul>
+<li>Java version: 1.8.0_121 (build 1.8.0_121-8u121-b13-3-b13)</li>
+<li>JVM: OpenJDK 64-Bit Server VM (build 25.121-b13, mixed mode)</li></ul>
 <p>The following tables indicate the performance (as measured by <a 
class="externalLink" 
href="http://openjdk.java.net/projects/code-tools/jmh/";>JMH</a>) for 
generating</p>
 <ul>
 <li>a sequence of 32-bits integers (a.k.a. Java type <tt>int</tt>)</li>
 <li>a sequence of 64-bits integers (a.k.a. Java type <tt>long</tt>)</li>
 <li>a sequence of 64-bits floating point numbers (a.k.a. Java type 
<tt>double</tt>)</li></ul>
-<p>The first column is the RNG identifier (see <a 
href="../commons-rng-simple/apidocs/org/apache/commons/rng/simple/RandomSource.html">RandomSource</a>);
 the performance value is the ratio of the (JMH) score with respect to the 
score of <tt>RandomSource.JDK</tt>.</p>
+<p>The first column is the RNG identifier (see <a 
href="../commons-rng-simple/apidocs/org/apache/commons/rng/simple/RandomSource.html">RandomSource</a>).</p>
 <p>In these tables, <i>lower</i> is <i>better</i>.</p>
 <ul>
 <li>Generating <tt>int</tt> values
 <table border="1" class="bodyTable">
 <tr class="a">
 <th align="center">RNG identifier</th>
-<th align="left">Score ratio</th></tr>
+<th align="left">Score (normalized to the score of 
<tt>RandomSource.JDK</tt>)</th></tr>
 <tr class="b">
 <td align="center">MWC_256</td>
-<td align="left">0.42168</td></tr>
+<td align="left">0.43405</td></tr>
 <tr class="a">
 <td align="center">SPLIT_MIX_64</td>
-<td align="left">0.42845</td></tr>
+<td align="left">0.46945</td></tr>
 <tr class="b">
 <td align="center">TWO_CMRES</td>
-<td align="left">0.46360</td></tr>
+<td align="left">0.53129</td></tr>
 <tr class="a">
 <td align="center">XOR_SHIFT_1024_S</td>
-<td align="left">0.48818</td></tr>
+<td align="left">0.57792</td></tr>
 <tr class="b">
-<td align="center">ISAAC</td>
-<td align="left">0.56263</td></tr>
-<tr class="a">
 <td align="center">KISS</td>
-<td align="left">0.56340</td></tr>
-<tr class="b">
-<td align="center">MT_64</td>
-<td align="left">0.62591</td></tr>
+<td align="left">0.61673</td></tr>
 <tr class="a">
+<td align="center">ISAAC</td>
+<td align="left">0.61966</td></tr>
+<tr class="b">
 <td align="center">MT</td>
-<td align="left">0.65198</td></tr>
+<td align="left">0.67974</td></tr>
+<tr class="a">
+<td align="center">MT_64</td>
+<td align="left">0.68905</td></tr>
 <tr class="b">
 <td align="center">WELL_512_A</td>
-<td align="left">0.83364</td></tr>
+<td align="left">0.83342</td></tr>
 <tr class="a">
 <td align="center">WELL_1024_A</td>
-<td align="left">0.88204</td></tr>
+<td align="left">0.89916</td></tr>
 <tr class="b">
-<td align="center">WELL_44497_A</td>
-<td align="left">0.99618</td></tr>
-<tr class="a">
 <td align="center">JDK</td>
 <td align="left">1.00000</td></tr>
+<tr class="a">
+<td align="center">WELL_19937_C</td>
+<td align="left">1.10156</td></tr>
+<tr class="b">
+<td align="center">WELL_19937_A</td>
+<td align="left">1.10758</td></tr>
+<tr class="a">
+<td align="center">WELL_44497_A</td>
+<td align="left">1.18293</td></tr>
 <tr class="b">
 <td align="center">WELL_44497_B</td>
-<td align="left">1.00641</td></tr>
+<td align="left">1.23908</td></tr></table></li>
+<li>Generating <tt>long</tt> values
+<table border="1" class="bodyTable">
 <tr class="a">
-<td align="center">WELL_19937_A</td>
-<td align="left">1.09770</td></tr>
+<th align="center">RNG identifier</th>
+<th align="left">Score (normalized to the score of 
<tt>RandomSource.JDK</tt>)</th></tr>
 <tr class="b">
+<td align="center">SPLIT_MIX_64</td>
+<td align="left">0.20866</td></tr>
+<tr class="a">
+<td align="center">TWO_CMRES</td>
+<td align="left">0.24560</td></tr>
+<tr class="b">
+<td align="center">XOR_SHIFT_1024_S</td>
+<td align="left">0.26774</td></tr>
+<tr class="a">
+<td align="center">MWC_256</td>
+<td align="left">0.31939</td></tr>
+<tr class="b">
+<td align="center">MT_64</td>
+<td align="left">0.32588</td></tr>
+<tr class="a">
+<td align="center">KISS</td>
+<td align="left">0.49883</td></tr>
+<tr class="b">
+<td align="center">MT</td>
+<td align="left">0.53191</td></tr>
+<tr class="a">
+<td align="center">ISAAC</td>
+<td align="left">0.54878</td></tr>
+<tr class="b">
+<td align="center">WELL_1024_A</td>
+<td align="left">0.64829</td></tr>
+<tr class="a">
+<td align="center">WELL_512_A</td>
+<td align="left">0.66269</td></tr>
+<tr class="b">
+<td align="center">WELL_19937_A</td>
+<td align="left">0.94553</td></tr>
+<tr class="a">
 <td align="center">WELL_19937_C</td>
-<td align="left">1.13420</td></tr></table></li>
-<li>Generating <tt>long</tt> values
+<td align="left">0.99949</td></tr>
+<tr class="b">
+<td align="center">JDK</td>
+<td align="left">1.00000</td></tr>
+<tr class="a">
+<td align="center">WELL_44497_A</td>
+<td align="left">1.03821</td></tr>
+<tr class="b">
+<td align="center">WELL_44497_B</td>
+<td align="left">1.09792</td></tr></table></li>
+<li>Generating <tt>double</tt> values
 <table border="1" class="bodyTable">
 <tr class="a">
 <th align="center">RNG identifier</th>
-<th align="left">Score ratio</th></tr>
+<th align="left">Score (normalized to the score of 
<tt>RandomSource.JDK</tt>)</th></tr>
 <tr class="b">
 <td align="center">SPLIT_MIX_64</td>
-<td align="left">0.23505</td></tr>
+<td align="left">0.27214</td></tr>
 <tr class="a">
 <td align="center">XOR_SHIFT_1024_S</td>
-<td align="left">0.26918</td></tr>
+<td align="left">0.30975</td></tr>
 <tr class="b">
 <td align="center">TWO_CMRES</td>
-<td align="left">0.28069</td></tr>
+<td align="left">0.31785</td></tr>
 <tr class="a">
-<td align="center">MT_64</td>
-<td align="left">0.34193</td></tr>
-<tr class="b">
 <td align="center">MWC_256</td>
-<td align="left">0.40359</td></tr>
+<td align="left">0.37810</td></tr>
+<tr class="b">
+<td align="center">MT_64</td>
+<td align="left">0.38516</td></tr>
 <tr class="a">
 <td align="center">KISS</td>
-<td align="left">0.55043</td></tr>
+<td align="left">0.51777</td></tr>
 <tr class="b">
-<td align="center">MT</td>
-<td align="left">0.63092</td></tr>
-<tr class="a">
 <td align="center">ISAAC</td>
-<td align="left">0.63944</td></tr>
+<td align="left">0.62528</td></tr>
+<tr class="a">
+<td align="center">MT</td>
+<td align="left">0.63868</td></tr>
 <tr class="b">
 <td align="center">WELL_512_A</td>
-<td align="left">0.65085</td></tr>
+<td align="left">0.66895</td></tr>
 <tr class="a">
 <td align="center">WELL_1024_A</td>
-<td align="left">0.71561</td></tr>
+<td align="left">0.70950</td></tr>
 <tr class="b">
 <td align="center">JDK</td>
 <td align="left">1.00000</td></tr>
 <tr class="a">
 <td align="center">WELL_19937_A</td>
-<td align="left">1.03761</td></tr>
+<td align="left">1.06693</td></tr>
 <tr class="b">
 <td align="center">WELL_44497_A</td>
-<td align="left">1.06495</td></tr>
+<td align="left">1.15398</td></tr>
 <tr class="a">
-<td align="center">WELL_44497_B</td>
-<td align="left">1.14565</td></tr>
-<tr class="b">
 <td align="center">WELL_19937_C</td>
-<td align="left">1.23338</td></tr></table></li>
-<li>Generating <tt>double</tt> values
+<td align="left">1.15598</td></tr>
+<tr class="b">
+<td align="center">WELL_44497_B</td>
+<td align="left">1.19013</td></tr></table></li>
+<li>Sampling from a <i>N(0,1)</i> Gaussian distribution (<a 
href="../commons-rng-sampling/apidocs/org/apache/commons/rng/sampling/distribution/MarsagliaNormalizedGaussianSampler.html">MarsagliaNormalizedGaussianSampler</a>
 implementation)
 <table border="1" class="bodyTable">
 <tr class="a">
 <th align="center">RNG identifier</th>
-<th align="left">Score ratio</th></tr>
+<th align="left">Score (normalized to the score of 
<tt>RandomSource.JDK</tt>)</th></tr>
 <tr class="b">
 <td align="center">SPLIT_MIX_64</td>
-<td align="left">0.28609</td></tr>
+<td align="left">0.46750</td></tr>
 <tr class="a">
 <td align="center">XOR_SHIFT_1024_S</td>
-<td align="left">0.32866</td></tr>
+<td align="left">0.48672</td></tr>
 <tr class="b">
 <td align="center">TWO_CMRES</td>
-<td align="left">0.34069</td></tr>
+<td align="left">0.54703</td></tr>
 <tr class="a">
 <td align="center">MWC_256</td>
-<td align="left">0.39083</td></tr>
+<td align="left">0.55824</td></tr>
 <tr class="b">
 <td align="center">MT_64</td>
-<td align="left">0.39368</td></tr>
+<td align="left">0.58233</td></tr>
 <tr class="a">
-<td align="center">KISS</td>
-<td align="left">0.60581</td></tr>
-<tr class="b">
 <td align="center">ISAAC</td>
-<td align="left">0.64429</td></tr>
+<td align="left">0.64820</td></tr>
+<tr class="b">
+<td align="center">KISS</td>
+<td align="left">0.66279</td></tr>
 <tr class="a">
 <td align="center">MT</td>
-<td align="left">0.67086</td></tr>
+<td align="left">0.68759</td></tr>
 <tr class="b">
+<td align="center">WELL_512_A</td>
+<td align="left">0.77854</td></tr>
+<tr class="a">
 <td align="center">WELL_1024_A</td>
-<td align="left">0.73629</td></tr>
+<td align="left">0.82204</td></tr>
+<tr class="b">
+<td align="center">WELL_19937_A</td>
+<td align="left">0.93504</td></tr>
 <tr class="a">
-<td align="center">WELL_512_A</td>
-<td align="left">0.78037</td></tr>
+<td align="center">WELL_19937_C</td>
+<td align="left">0.98401</td></tr>
 <tr class="b">
+<td align="center">WELL_44497_A</td>
+<td align="left">0.99620</td></tr>
+<tr class="a">
 <td align="center">JDK</td>
 <td align="left">1.00000</td></tr>
+<tr class="b">
+<td align="center">WELL_44497_B</td>
+<td align="left">1.03380</td></tr></table></li>
+<li>Comparing <tt>MarsagliaNormalizedGaussianSampler</tt> with 
<tt>java.util.Random</tt>
+<table border="1" class="bodyTable">
 <tr class="a">
+<th align="center">RNG identifier</th>
+<th align="left">Score (normalized to the score of <a class="externalLink" 
href="https://docs.oracle.com/javase/8/docs/api/java/util/Random.html#nextGaussian--";>nextGaussian()</a>
 method)</th></tr>
+<tr class="b">
+<td align="center">SPLIT_MIX_64</td>
+<td align="left">0.30320</td></tr>
+<tr class="a">
+<td align="center">XOR_SHIFT_1024_S</td>
+<td align="left">0.31566</td></tr>
+<tr class="b">
+<td align="center">TWO_CMRES</td>
+<td align="left">0.35477</td></tr>
+<tr class="a">
+<td align="center">MWC_256</td>
+<td align="left">0.36204</td></tr>
+<tr class="b">
+<td align="center">MT_64</td>
+<td align="left">0.37767</td></tr>
+<tr class="a">
+<td align="center">ISAAC</td>
+<td align="left">0.42038</td></tr>
+<tr class="b">
+<td align="center">KISS</td>
+<td align="left">0.42985</td></tr>
+<tr class="a">
+<td align="center">MT</td>
+<td align="left">0.44593</td></tr>
+<tr class="b">
+<td align="center">WELL_512_A</td>
+<td align="left">0.50492</td></tr>
+<tr class="a">
+<td align="center">WELL_1024_A</td>
+<td align="left">0.53313</td></tr>
+<tr class="b">
 <td align="center">WELL_19937_A</td>
-<td align="left">1.11497</td></tr>
+<td align="left">0.60641</td></tr>
+<tr class="a">
+<td align="center">WELL_19937_C</td>
+<td align="left">0.63817</td></tr>
 <tr class="b">
 <td align="center">WELL_44497_A</td>
-<td align="left">1.13362</td></tr>
+<td align="left">0.64607</td></tr>
 <tr class="a">
-<td align="center">WELL_19937_C</td>
-<td align="left">1.15334</td></tr>
+<td align="center">JDK</td>
+<td align="left">0.64854</td></tr>
 <tr class="b">
 <td align="center">WELL_44497_B</td>
-<td align="left">1.22613</td></tr></table></li></ul></div>
+<td align="left">0.67046</td></tr></table></li></ul></div>
 <div class="section">
 <h2><a name="a5._Quality"></a>5. Quality</h2>
 <p>This section reports results of <a 
href="../commons-rng-examples/apidocs/org/apache/commons/rng/examples/stress/package-summary.html">performing
 &quot;stress tests&quot;</a> that aim at detecting failures of an 
implementation to produce sequences of numbers that follow a uniform 
distribution.</p>
@@ -649,7 +750,7 @@ String word = sampler.sample().get(0);</
     </div>
 
     <div class="footer">
-      <p>Copyright &copy;                    2016
+      <p>Copyright &copy;                    2016-2017
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All Rights Reserved.</p>
                                                                   

Modified: 
websites/production/commons/content/proper/commons-rng/userguide/why_not_java_random.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rng/userguide/why_not_java_random.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rng/userguide/why_not_java_random.html
 Thu Apr 20 11:33:45 2017
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 12 December 2016
+ | Generated by Apache Maven Doxia at 09 April 2017
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20161212" />
+    <meta name="Date-Revision-yyyymmdd" content="20170409" />
     <meta http-equiv="Content-Language" content="en" />
     <title>RNG &#x2013; Why not java.util.Random ?</title>
 
@@ -40,8 +40,8 @@
           <a class="brand" 
href="http://commons.apache.org/proper/commons-rng/";>Apache Commons RNG 
&trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 12 December 2016</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.0</li>
+            <li id="publishDate">Last Published: 09 April 2017</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.1-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -232,7 +232,7 @@
     </div>
 
     <div class="footer">
-      <p>Copyright &copy;                    2016
+      <p>Copyright &copy;                    2016-2017
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All Rights Reserved.</p>
                                                                   

Modified: 
websites/production/commons/content/proper/commons-rng/xref-test/index.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/index.html 
(original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/index.html 
Thu Apr 20 11:33:45 2017
@@ -4,7 +4,7 @@
 <!-- this is a JXR report set -->
        <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>
        </head>
     <frameset cols="20%,80%">
                <frameset rows="30%,70%">

Modified: 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/CollectionSamplerTest.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/CollectionSamplerTest.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/CollectionSamplerTest.html
 Thu Apr 20 11:33:45 2017
@@ -64,6 +64,6 @@
 <a class="jxr_linenumber" name="L56" href="#L56">56</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-test/org/apache/commons/rng/sampling/ListSamplerTest.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/ListSamplerTest.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/ListSamplerTest.html
 Thu Apr 20 11:33:45 2017
@@ -179,6 +179,6 @@
 <a class="jxr_linenumber" name="L171" href="#L171">171</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-test/org/apache/commons/rng/sampling/PermutationSamplerTest.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/PermutationSamplerTest.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/PermutationSamplerTest.html
 Thu Apr 20 11:33:45 2017
@@ -219,6 +219,6 @@
 <a class="jxr_linenumber" name="L211" href="#L211">211</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-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplerParametricTest.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplerParametricTest.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplerParametricTest.html
 Thu Apr 20 11:33:45 2017
@@ -140,6 +140,6 @@
 <a class="jxr_linenumber" name="L132" href="#L132">132</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-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplerTestData.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplerTestData.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplerTestData.html
 Thu Apr 20 11:33:45 2017
@@ -54,6 +54,6 @@
 <a class="jxr_linenumber" name="L46" href="#L46">46</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>


Reply via email to