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 2016/08/22 22:01:59 UTC

svn commit: r995697 [5/14] - in /websites/production/commons/content/proper/commons-rng: ./ apidocs/ apidocs/org/apache/commons/rng/ apidocs/org/apache/commons/rng/class-use/ apidocs/org/apache/commons/rng/internal/ apidocs/org/apache/commons/rng/inter...

Modified: websites/production/commons/content/proper/commons-rng/apidocs/src-html/org/apache/commons/rng/internal/BaseProvider.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/apidocs/src-html/org/apache/commons/rng/internal/BaseProvider.html (original)
+++ websites/production/commons/content/proper/commons-rng/apidocs/src-html/org/apache/commons/rng/internal/BaseProvider.html Mon Aug 22 22:01:58 2016
@@ -25,173 +25,143 @@
 <span class="sourceLineNo">017</span><a name="line.17"></a>
 <span class="sourceLineNo">018</span>package org.apache.commons.rng.internal;<a name="line.18"></a>
 <span class="sourceLineNo">019</span><a name="line.19"></a>
-<span class="sourceLineNo">020</span>import java.util.Arrays;<a name="line.20"></a>
-<span class="sourceLineNo">021</span>import java.io.Serializable;<a name="line.21"></a>
-<span class="sourceLineNo">022</span>import org.apache.commons.rng.UniformRandomProvider;<a name="line.22"></a>
-<span class="sourceLineNo">023</span>import org.apache.commons.rng.RandomSource;<a name="line.23"></a>
-<span class="sourceLineNo">024</span><a name="line.24"></a>
-<span class="sourceLineNo">025</span>/**<a name="line.25"></a>
-<span class="sourceLineNo">026</span> * Base class with default implementation for common methods.<a name="line.26"></a>
-<span class="sourceLineNo">027</span> */<a name="line.27"></a>
-<span class="sourceLineNo">028</span>public abstract class BaseProvider<a name="line.28"></a>
-<span class="sourceLineNo">029</span>    implements UniformRandomProvider,<a name="line.29"></a>
-<span class="sourceLineNo">030</span>               StateSettable {<a name="line.30"></a>
-<span class="sourceLineNo">031</span>    /** {@inheritDoc} */<a name="line.31"></a>
-<span class="sourceLineNo">032</span>    @Override<a name="line.32"></a>
-<span class="sourceLineNo">033</span>    public int nextInt(int n) {<a name="line.33"></a>
-<span class="sourceLineNo">034</span>        checkStrictlyPositive(n);<a name="line.34"></a>
-<span class="sourceLineNo">035</span><a name="line.35"></a>
-<span class="sourceLineNo">036</span>        if ((n &amp; -n) == n) {<a name="line.36"></a>
-<span class="sourceLineNo">037</span>            return (int) ((n * (long) (nextInt() &gt;&gt;&gt; 1)) &gt;&gt; 31);<a name="line.37"></a>
-<span class="sourceLineNo">038</span>        }<a name="line.38"></a>
-<span class="sourceLineNo">039</span>        int bits;<a name="line.39"></a>
-<span class="sourceLineNo">040</span>        int val;<a name="line.40"></a>
-<span class="sourceLineNo">041</span>        do {<a name="line.41"></a>
-<span class="sourceLineNo">042</span>            bits = nextInt() &gt;&gt;&gt; 1;<a name="line.42"></a>
-<span class="sourceLineNo">043</span>            val = bits % n;<a name="line.43"></a>
-<span class="sourceLineNo">044</span>        } while (bits - val + (n - 1) &lt; 0);<a name="line.44"></a>
-<span class="sourceLineNo">045</span><a name="line.45"></a>
-<span class="sourceLineNo">046</span>        return val;<a name="line.46"></a>
-<span class="sourceLineNo">047</span>    }<a name="line.47"></a>
-<span class="sourceLineNo">048</span><a name="line.48"></a>
-<span class="sourceLineNo">049</span>    /** {@inheritDoc} */<a name="line.49"></a>
-<span class="sourceLineNo">050</span>    @Override<a name="line.50"></a>
-<span class="sourceLineNo">051</span>    public long nextLong(long n) {<a name="line.51"></a>
-<span class="sourceLineNo">052</span>        checkStrictlyPositive(n);<a name="line.52"></a>
-<span class="sourceLineNo">053</span><a name="line.53"></a>
-<span class="sourceLineNo">054</span>        long bits;<a name="line.54"></a>
-<span class="sourceLineNo">055</span>        long val;<a name="line.55"></a>
-<span class="sourceLineNo">056</span>        do {<a name="line.56"></a>
-<span class="sourceLineNo">057</span>            bits = nextLong() &gt;&gt;&gt; 1;<a name="line.57"></a>
-<span class="sourceLineNo">058</span>            val  = bits % n;<a name="line.58"></a>
-<span class="sourceLineNo">059</span>        } while (bits - val + (n - 1) &lt; 0);<a name="line.59"></a>
-<span class="sourceLineNo">060</span><a name="line.60"></a>
-<span class="sourceLineNo">061</span>        return val;<a name="line.61"></a>
-<span class="sourceLineNo">062</span>    }<a name="line.62"></a>
-<span class="sourceLineNo">063</span><a name="line.63"></a>
-<span class="sourceLineNo">064</span>    /** {@inheritDoc} */<a name="line.64"></a>
-<span class="sourceLineNo">065</span>    @Override<a name="line.65"></a>
-<span class="sourceLineNo">066</span>    public String toString() {<a name="line.66"></a>
-<span class="sourceLineNo">067</span>        return getClass().getName();<a name="line.67"></a>
-<span class="sourceLineNo">068</span>    }<a name="line.68"></a>
-<span class="sourceLineNo">069</span><a name="line.69"></a>
-<span class="sourceLineNo">070</span>    /** {@inheritDoc} */<a name="line.70"></a>
-<span class="sourceLineNo">071</span>    @Override<a name="line.71"></a>
-<span class="sourceLineNo">072</span>    public RandomSource.State getState() {<a name="line.72"></a>
-<span class="sourceLineNo">073</span>        return new State(getStateInternal());<a name="line.73"></a>
-<span class="sourceLineNo">074</span>    }<a name="line.74"></a>
-<span class="sourceLineNo">075</span><a name="line.75"></a>
-<span class="sourceLineNo">076</span>    /** {@inheritDoc} */<a name="line.76"></a>
-<span class="sourceLineNo">077</span>    @Override<a name="line.77"></a>
-<span class="sourceLineNo">078</span>    public void setState(RandomSource.State state) {<a name="line.78"></a>
-<span class="sourceLineNo">079</span>        // Cast will intentionally fail if the argument is not one we created.<a name="line.79"></a>
-<span class="sourceLineNo">080</span>        final State s = (State) state;<a name="line.80"></a>
-<span class="sourceLineNo">081</span>        setStateInternal(s.getState());<a name="line.81"></a>
-<span class="sourceLineNo">082</span>    }<a name="line.82"></a>
-<span class="sourceLineNo">083</span><a name="line.83"></a>
-<span class="sourceLineNo">084</span>    /**<a name="line.84"></a>
-<span class="sourceLineNo">085</span>     * Creates a snapshot of the RNG state.<a name="line.85"></a>
-<span class="sourceLineNo">086</span>     *<a name="line.86"></a>
-<span class="sourceLineNo">087</span>     * @return the internal state.<a name="line.87"></a>
-<span class="sourceLineNo">088</span>     * @throws UnsupportedOperationException if not implemented.<a name="line.88"></a>
-<span class="sourceLineNo">089</span>     */<a name="line.89"></a>
-<span class="sourceLineNo">090</span>    protected byte[] getStateInternal() {<a name="line.90"></a>
-<span class="sourceLineNo">091</span>        throw new UnsupportedOperationException();<a name="line.91"></a>
-<span class="sourceLineNo">092</span>    }<a name="line.92"></a>
-<span class="sourceLineNo">093</span><a name="line.93"></a>
-<span class="sourceLineNo">094</span>    /**<a name="line.94"></a>
-<span class="sourceLineNo">095</span>     * Resets the RNG to the given {@code state}.<a name="line.95"></a>
-<span class="sourceLineNo">096</span>     *<a name="line.96"></a>
-<span class="sourceLineNo">097</span>     * @param state State (previously obtained by a call to<a name="line.97"></a>
-<span class="sourceLineNo">098</span>     * {@link #getStateInternal()}).<a name="line.98"></a>
-<span class="sourceLineNo">099</span>     * @throws UnsupportedOperationException if not implemented.<a name="line.99"></a>
-<span class="sourceLineNo">100</span>     *<a name="line.100"></a>
-<span class="sourceLineNo">101</span>     * @see #checkStateSize(byte[],int)<a name="line.101"></a>
-<span class="sourceLineNo">102</span>     */<a name="line.102"></a>
-<span class="sourceLineNo">103</span>    protected void setStateInternal(byte[] state) {<a name="line.103"></a>
-<span class="sourceLineNo">104</span>        throw new UnsupportedOperationException();<a name="line.104"></a>
-<span class="sourceLineNo">105</span>    }<a name="line.105"></a>
-<span class="sourceLineNo">106</span><a name="line.106"></a>
-<span class="sourceLineNo">107</span>    /**<a name="line.107"></a>
-<span class="sourceLineNo">108</span>     * Checks that the {@code state} has the {@code expected} size.<a name="line.108"></a>
-<span class="sourceLineNo">109</span>     *<a name="line.109"></a>
-<span class="sourceLineNo">110</span>     * @param state State.<a name="line.110"></a>
-<span class="sourceLineNo">111</span>     * @param expected Expected length of {@code state} array.<a name="line.111"></a>
-<span class="sourceLineNo">112</span>     * @throws IllegalArgumentException if {@code state.length != expected}.<a name="line.112"></a>
-<span class="sourceLineNo">113</span>     */<a name="line.113"></a>
-<span class="sourceLineNo">114</span>    protected void checkStateSize(byte[] state,<a name="line.114"></a>
-<span class="sourceLineNo">115</span>                                  int expected) {<a name="line.115"></a>
-<span class="sourceLineNo">116</span>        if (state.length != expected) {<a name="line.116"></a>
-<span class="sourceLineNo">117</span>            throw new IllegalArgumentException("State size must be " + expected +<a name="line.117"></a>
-<span class="sourceLineNo">118</span>                                               " but was " + state.length);<a name="line.118"></a>
-<span class="sourceLineNo">119</span>        }<a name="line.119"></a>
-<span class="sourceLineNo">120</span>    }<a name="line.120"></a>
-<span class="sourceLineNo">121</span><a name="line.121"></a>
-<span class="sourceLineNo">122</span>    /**<a name="line.122"></a>
-<span class="sourceLineNo">123</span>     * Checks whether {@code index} is in the range {@code [min, max]}.<a name="line.123"></a>
-<span class="sourceLineNo">124</span>     *<a name="line.124"></a>
-<span class="sourceLineNo">125</span>     * @param min Lower bound.<a name="line.125"></a>
-<span class="sourceLineNo">126</span>     * @param max Upper bound.<a name="line.126"></a>
-<span class="sourceLineNo">127</span>     * @param index Value that must lie within the {@code [min, max]} interval.<a name="line.127"></a>
-<span class="sourceLineNo">128</span>     * @throws IndexOutOfBoundsException if {@code index} is not within the<a name="line.128"></a>
-<span class="sourceLineNo">129</span>     * {@code [min, max]} interval.<a name="line.129"></a>
-<span class="sourceLineNo">130</span>     */<a name="line.130"></a>
-<span class="sourceLineNo">131</span>    protected void checkIndex(int min,<a name="line.131"></a>
-<span class="sourceLineNo">132</span>                              int max,<a name="line.132"></a>
-<span class="sourceLineNo">133</span>                              int index) {<a name="line.133"></a>
-<span class="sourceLineNo">134</span>        if (index &lt; min ||<a name="line.134"></a>
-<span class="sourceLineNo">135</span>            index &gt; max) {<a name="line.135"></a>
-<span class="sourceLineNo">136</span>            throw new IndexOutOfBoundsException(index + " is out of interval [" +<a name="line.136"></a>
-<span class="sourceLineNo">137</span>                                                min + ", " +<a name="line.137"></a>
-<span class="sourceLineNo">138</span>                                                max + "]");<a name="line.138"></a>
-<span class="sourceLineNo">139</span>        }<a name="line.139"></a>
-<span class="sourceLineNo">140</span>    }<a name="line.140"></a>
-<span class="sourceLineNo">141</span><a name="line.141"></a>
-<span class="sourceLineNo">142</span>    /**<a name="line.142"></a>
-<span class="sourceLineNo">143</span>     * Checks that the argument is strictly positive.<a name="line.143"></a>
-<span class="sourceLineNo">144</span>     *<a name="line.144"></a>
-<span class="sourceLineNo">145</span>     * @param n Number to check.<a name="line.145"></a>
-<span class="sourceLineNo">146</span>     * @throws IllegalArgumentException if {@code n &lt;= 0}.<a name="line.146"></a>
-<span class="sourceLineNo">147</span>     */<a name="line.147"></a>
-<span class="sourceLineNo">148</span>    private void checkStrictlyPositive(long n) {<a name="line.148"></a>
-<span class="sourceLineNo">149</span>        if (n &lt;= 0) {<a name="line.149"></a>
-<span class="sourceLineNo">150</span>            throw new IllegalArgumentException("Must be strictly positive: " + n);<a name="line.150"></a>
-<span class="sourceLineNo">151</span>        }<a name="line.151"></a>
-<span class="sourceLineNo">152</span>    }<a name="line.152"></a>
-<span class="sourceLineNo">153</span><a name="line.153"></a>
-<span class="sourceLineNo">154</span>    /**<a name="line.154"></a>
-<span class="sourceLineNo">155</span>     * "Black-box" state.<a name="line.155"></a>
-<span class="sourceLineNo">156</span>     * Its sole purpose is to store all the data needed to recover<a name="line.156"></a>
-<span class="sourceLineNo">157</span>     * the same state in order to restart a sequence where it left<a name="line.157"></a>
-<span class="sourceLineNo">158</span>     * off.<a name="line.158"></a>
-<span class="sourceLineNo">159</span>     * External code should not to modify the data contained in<a name="line.159"></a>
-<span class="sourceLineNo">160</span>     * instances of this class.<a name="line.160"></a>
-<span class="sourceLineNo">161</span>     */<a name="line.161"></a>
-<span class="sourceLineNo">162</span>    private static class State<a name="line.162"></a>
-<span class="sourceLineNo">163</span>        implements RandomSource.State,<a name="line.163"></a>
-<span class="sourceLineNo">164</span>                   Serializable {<a name="line.164"></a>
-<span class="sourceLineNo">165</span>        /** Serializable version identifier. */<a name="line.165"></a>
-<span class="sourceLineNo">166</span>        private static final long serialVersionUID = 4720160226L;<a name="line.166"></a>
-<span class="sourceLineNo">167</span>        /** Internal state. */<a name="line.167"></a>
-<span class="sourceLineNo">168</span>        private byte[] state;<a name="line.168"></a>
-<span class="sourceLineNo">169</span><a name="line.169"></a>
-<span class="sourceLineNo">170</span>        /**<a name="line.170"></a>
-<span class="sourceLineNo">171</span>         * @param state Mapping of all the data which a subclass of<a name="line.171"></a>
-<span class="sourceLineNo">172</span>         * {@link BaseProvider} needs in order to reset its internal<a name="line.172"></a>
-<span class="sourceLineNo">173</span>         * state.<a name="line.173"></a>
-<span class="sourceLineNo">174</span>         */<a name="line.174"></a>
-<span class="sourceLineNo">175</span>        State(byte[] state) {<a name="line.175"></a>
-<span class="sourceLineNo">176</span>            this.state = Arrays.copyOf(state, state.length);<a name="line.176"></a>
-<span class="sourceLineNo">177</span>        }<a name="line.177"></a>
-<span class="sourceLineNo">178</span><a name="line.178"></a>
-<span class="sourceLineNo">179</span>        /**<a name="line.179"></a>
-<span class="sourceLineNo">180</span>         * @return the internal state.<a name="line.180"></a>
-<span class="sourceLineNo">181</span>         */<a name="line.181"></a>
-<span class="sourceLineNo">182</span>        byte[] getState() {<a name="line.182"></a>
-<span class="sourceLineNo">183</span>            return Arrays.copyOf(state, state.length);<a name="line.183"></a>
-<span class="sourceLineNo">184</span>        }<a name="line.184"></a>
-<span class="sourceLineNo">185</span>    }<a name="line.185"></a>
-<span class="sourceLineNo">186</span>}<a name="line.186"></a>
+<span class="sourceLineNo">020</span>import org.apache.commons.rng.UniformRandomProvider;<a name="line.20"></a>
+<span class="sourceLineNo">021</span><a name="line.21"></a>
+<span class="sourceLineNo">022</span>/**<a name="line.22"></a>
+<span class="sourceLineNo">023</span> * Base class with default implementation for common methods.<a name="line.23"></a>
+<span class="sourceLineNo">024</span> */<a name="line.24"></a>
+<span class="sourceLineNo">025</span>public abstract class BaseProvider<a name="line.25"></a>
+<span class="sourceLineNo">026</span>    implements UniformRandomProvider {<a name="line.26"></a>
+<span class="sourceLineNo">027</span>    /** {@inheritDoc} */<a name="line.27"></a>
+<span class="sourceLineNo">028</span>    @Override<a name="line.28"></a>
+<span class="sourceLineNo">029</span>    public int nextInt(int n) {<a name="line.29"></a>
+<span class="sourceLineNo">030</span>        checkStrictlyPositive(n);<a name="line.30"></a>
+<span class="sourceLineNo">031</span><a name="line.31"></a>
+<span class="sourceLineNo">032</span>        if ((n &amp; -n) == n) {<a name="line.32"></a>
+<span class="sourceLineNo">033</span>            return (int) ((n * (long) (nextInt() &gt;&gt;&gt; 1)) &gt;&gt; 31);<a name="line.33"></a>
+<span class="sourceLineNo">034</span>        }<a name="line.34"></a>
+<span class="sourceLineNo">035</span>        int bits;<a name="line.35"></a>
+<span class="sourceLineNo">036</span>        int val;<a name="line.36"></a>
+<span class="sourceLineNo">037</span>        do {<a name="line.37"></a>
+<span class="sourceLineNo">038</span>            bits = nextInt() &gt;&gt;&gt; 1;<a name="line.38"></a>
+<span class="sourceLineNo">039</span>            val = bits % n;<a name="line.39"></a>
+<span class="sourceLineNo">040</span>        } while (bits - val + (n - 1) &lt; 0);<a name="line.40"></a>
+<span class="sourceLineNo">041</span><a name="line.41"></a>
+<span class="sourceLineNo">042</span>        return val;<a name="line.42"></a>
+<span class="sourceLineNo">043</span>    }<a name="line.43"></a>
+<span class="sourceLineNo">044</span><a name="line.44"></a>
+<span class="sourceLineNo">045</span>    /** {@inheritDoc} */<a name="line.45"></a>
+<span class="sourceLineNo">046</span>    @Override<a name="line.46"></a>
+<span class="sourceLineNo">047</span>    public long nextLong(long n) {<a name="line.47"></a>
+<span class="sourceLineNo">048</span>        checkStrictlyPositive(n);<a name="line.48"></a>
+<span class="sourceLineNo">049</span><a name="line.49"></a>
+<span class="sourceLineNo">050</span>        long bits;<a name="line.50"></a>
+<span class="sourceLineNo">051</span>        long val;<a name="line.51"></a>
+<span class="sourceLineNo">052</span>        do {<a name="line.52"></a>
+<span class="sourceLineNo">053</span>            bits = nextLong() &gt;&gt;&gt; 1;<a name="line.53"></a>
+<span class="sourceLineNo">054</span>            val  = bits % n;<a name="line.54"></a>
+<span class="sourceLineNo">055</span>        } while (bits - val + (n - 1) &lt; 0);<a name="line.55"></a>
+<span class="sourceLineNo">056</span><a name="line.56"></a>
+<span class="sourceLineNo">057</span>        return val;<a name="line.57"></a>
+<span class="sourceLineNo">058</span>    }<a name="line.58"></a>
+<span class="sourceLineNo">059</span><a name="line.59"></a>
+<span class="sourceLineNo">060</span>    /** {@inheritDoc} */<a name="line.60"></a>
+<span class="sourceLineNo">061</span>    @Override<a name="line.61"></a>
+<span class="sourceLineNo">062</span>    public String toString() {<a name="line.62"></a>
+<span class="sourceLineNo">063</span>        return getClass().getName();<a name="line.63"></a>
+<span class="sourceLineNo">064</span>    }<a name="line.64"></a>
+<span class="sourceLineNo">065</span><a name="line.65"></a>
+<span class="sourceLineNo">066</span>    /**<a name="line.66"></a>
+<span class="sourceLineNo">067</span>     * Gets the instance's state.<a name="line.67"></a>
+<span class="sourceLineNo">068</span>     *<a name="line.68"></a>
+<span class="sourceLineNo">069</span>     * @return the current state. The given argument can then be passed<a name="line.69"></a>
+<span class="sourceLineNo">070</span>     * to {@link #setState(byte[])} in order to recover the<a name="line.70"></a>
+<span class="sourceLineNo">071</span>     * current state.<a name="line.71"></a>
+<span class="sourceLineNo">072</span>     */<a name="line.72"></a>
+<span class="sourceLineNo">073</span>    public byte[] getState() {<a name="line.73"></a>
+<span class="sourceLineNo">074</span>        return getStateInternal();<a name="line.74"></a>
+<span class="sourceLineNo">075</span>    }<a name="line.75"></a>
+<span class="sourceLineNo">076</span><a name="line.76"></a>
+<span class="sourceLineNo">077</span>    /**<a name="line.77"></a>
+<span class="sourceLineNo">078</span>     * Sets the instance's state.<a name="line.78"></a>
+<span class="sourceLineNo">079</span>     *<a name="line.79"></a>
+<span class="sourceLineNo">080</span>     * @param state State. The given argument must have been retrieved<a name="line.80"></a>
+<span class="sourceLineNo">081</span>     * by a call to {@link #getState()}.<a name="line.81"></a>
+<span class="sourceLineNo">082</span>     */<a name="line.82"></a>
+<span class="sourceLineNo">083</span>    public void setState(byte[] state) {<a name="line.83"></a>
+<span class="sourceLineNo">084</span>        setStateInternal(state);<a name="line.84"></a>
+<span class="sourceLineNo">085</span>    }<a name="line.85"></a>
+<span class="sourceLineNo">086</span><a name="line.86"></a>
+<span class="sourceLineNo">087</span>    /**<a name="line.87"></a>
+<span class="sourceLineNo">088</span>     * Creates a snapshot of the RNG state.<a name="line.88"></a>
+<span class="sourceLineNo">089</span>     *<a name="line.89"></a>
+<span class="sourceLineNo">090</span>     * @return the internal state.<a name="line.90"></a>
+<span class="sourceLineNo">091</span>     * @throws UnsupportedOperationException if not implemented.<a name="line.91"></a>
+<span class="sourceLineNo">092</span>     */<a name="line.92"></a>
+<span class="sourceLineNo">093</span>    protected byte[] getStateInternal() {<a name="line.93"></a>
+<span class="sourceLineNo">094</span>        throw new UnsupportedOperationException();<a name="line.94"></a>
+<span class="sourceLineNo">095</span>    }<a name="line.95"></a>
+<span class="sourceLineNo">096</span><a name="line.96"></a>
+<span class="sourceLineNo">097</span>    /**<a name="line.97"></a>
+<span class="sourceLineNo">098</span>     * Resets the RNG to the given {@code state}.<a name="line.98"></a>
+<span class="sourceLineNo">099</span>     *<a name="line.99"></a>
+<span class="sourceLineNo">100</span>     * @param state State (previously obtained by a call to<a name="line.100"></a>
+<span class="sourceLineNo">101</span>     * {@link #getStateInternal()}).<a name="line.101"></a>
+<span class="sourceLineNo">102</span>     * @throws UnsupportedOperationException if not implemented.<a name="line.102"></a>
+<span class="sourceLineNo">103</span>     *<a name="line.103"></a>
+<span class="sourceLineNo">104</span>     * @see #checkStateSize(byte[],int)<a name="line.104"></a>
+<span class="sourceLineNo">105</span>     */<a name="line.105"></a>
+<span class="sourceLineNo">106</span>    protected void setStateInternal(byte[] state) {<a name="line.106"></a>
+<span class="sourceLineNo">107</span>        throw new UnsupportedOperationException();<a name="line.107"></a>
+<span class="sourceLineNo">108</span>    }<a name="line.108"></a>
+<span class="sourceLineNo">109</span><a name="line.109"></a>
+<span class="sourceLineNo">110</span>    /**<a name="line.110"></a>
+<span class="sourceLineNo">111</span>     * Checks that the {@code state} has the {@code expected} size.<a name="line.111"></a>
+<span class="sourceLineNo">112</span>     *<a name="line.112"></a>
+<span class="sourceLineNo">113</span>     * @param state State.<a name="line.113"></a>
+<span class="sourceLineNo">114</span>     * @param expected Expected length of {@code state} array.<a name="line.114"></a>
+<span class="sourceLineNo">115</span>     * @throws IllegalArgumentException if {@code state.length != expected}.<a name="line.115"></a>
+<span class="sourceLineNo">116</span>     */<a name="line.116"></a>
+<span class="sourceLineNo">117</span>    protected void checkStateSize(byte[] state,<a name="line.117"></a>
+<span class="sourceLineNo">118</span>                                  int expected) {<a name="line.118"></a>
+<span class="sourceLineNo">119</span>        if (state.length != expected) {<a name="line.119"></a>
+<span class="sourceLineNo">120</span>            throw new IllegalArgumentException("State size must be " + expected +<a name="line.120"></a>
+<span class="sourceLineNo">121</span>                                               " but was " + state.length);<a name="line.121"></a>
+<span class="sourceLineNo">122</span>        }<a name="line.122"></a>
+<span class="sourceLineNo">123</span>    }<a name="line.123"></a>
+<span class="sourceLineNo">124</span><a name="line.124"></a>
+<span class="sourceLineNo">125</span>    /**<a name="line.125"></a>
+<span class="sourceLineNo">126</span>     * Checks whether {@code index} is in the range {@code [min, max]}.<a name="line.126"></a>
+<span class="sourceLineNo">127</span>     *<a name="line.127"></a>
+<span class="sourceLineNo">128</span>     * @param min Lower bound.<a name="line.128"></a>
+<span class="sourceLineNo">129</span>     * @param max Upper bound.<a name="line.129"></a>
+<span class="sourceLineNo">130</span>     * @param index Value that must lie within the {@code [min, max]} interval.<a name="line.130"></a>
+<span class="sourceLineNo">131</span>     * @throws IndexOutOfBoundsException if {@code index} is not within the<a name="line.131"></a>
+<span class="sourceLineNo">132</span>     * {@code [min, max]} interval.<a name="line.132"></a>
+<span class="sourceLineNo">133</span>     */<a name="line.133"></a>
+<span class="sourceLineNo">134</span>    protected void checkIndex(int min,<a name="line.134"></a>
+<span class="sourceLineNo">135</span>                              int max,<a name="line.135"></a>
+<span class="sourceLineNo">136</span>                              int index) {<a name="line.136"></a>
+<span class="sourceLineNo">137</span>        if (index &lt; min ||<a name="line.137"></a>
+<span class="sourceLineNo">138</span>            index &gt; max) {<a name="line.138"></a>
+<span class="sourceLineNo">139</span>            throw new IndexOutOfBoundsException(index + " is out of interval [" +<a name="line.139"></a>
+<span class="sourceLineNo">140</span>                                                min + ", " +<a name="line.140"></a>
+<span class="sourceLineNo">141</span>                                                max + "]");<a name="line.141"></a>
+<span class="sourceLineNo">142</span>        }<a name="line.142"></a>
+<span class="sourceLineNo">143</span>    }<a name="line.143"></a>
+<span class="sourceLineNo">144</span><a name="line.144"></a>
+<span class="sourceLineNo">145</span>    /**<a name="line.145"></a>
+<span class="sourceLineNo">146</span>     * Checks that the argument is strictly positive.<a name="line.146"></a>
+<span class="sourceLineNo">147</span>     *<a name="line.147"></a>
+<span class="sourceLineNo">148</span>     * @param n Number to check.<a name="line.148"></a>
+<span class="sourceLineNo">149</span>     * @throws IllegalArgumentException if {@code n &lt;= 0}.<a name="line.149"></a>
+<span class="sourceLineNo">150</span>     */<a name="line.150"></a>
+<span class="sourceLineNo">151</span>    private void checkStrictlyPositive(long n) {<a name="line.151"></a>
+<span class="sourceLineNo">152</span>        if (n &lt;= 0) {<a name="line.152"></a>
+<span class="sourceLineNo">153</span>            throw new IllegalArgumentException("Must be strictly positive: " + n);<a name="line.153"></a>
+<span class="sourceLineNo">154</span>        }<a name="line.154"></a>
+<span class="sourceLineNo">155</span>    }<a name="line.155"></a>
+<span class="sourceLineNo">156</span>}<a name="line.156"></a>
 
 
 

Modified: websites/production/commons/content/proper/commons-rng/apidocs/src-html/org/apache/commons/rng/internal/source64/TwoCmres.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/apidocs/src-html/org/apache/commons/rng/internal/source64/TwoCmres.html (original)
+++ websites/production/commons/content/proper/commons-rng/apidocs/src-html/org/apache/commons/rng/internal/source64/TwoCmres.html Mon Aug 22 22:01:58 2016
@@ -30,7 +30,7 @@
 <span class="sourceLineNo">022</span>import org.apache.commons.rng.internal.util.NumberFactory;<a name="line.22"></a>
 <span class="sourceLineNo">023</span><a name="line.23"></a>
 <span class="sourceLineNo">024</span>/**<a name="line.24"></a>
-<span class="sourceLineNo">025</span> * Random number generator designed by Mark D. Overton.<a name="line.25"></a>
+<span class="sourceLineNo">025</span> * Random number generator designed by Mark D.&amp;nbsp;Overton.<a name="line.25"></a>
 <span class="sourceLineNo">026</span> * &lt;p&gt;<a name="line.26"></a>
 <span class="sourceLineNo">027</span> *  It is one of the many generators described by the author in the following article series:<a name="line.27"></a>
 <span class="sourceLineNo">028</span> *  &lt;ul&gt;<a name="line.28"></a>

Modified: websites/production/commons/content/proper/commons-rng/changes-report.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/changes-report.html (original)
+++ websites/production/commons/content/proper/commons-rng/changes-report.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Commons Rng Release Notes</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/checkstyle.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/checkstyle.html (original)
+++ websites/production/commons/content/proper/commons-rng/checkstyle.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Checkstyle Results</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>
@@ -286,7 +278,7 @@
 <th><img src="images/icon_warning_sml.gif" alt="" />&#160;Warnings</th>
 <th><img src="images/icon_error_sml.gif" alt="" />&#160;Errors</th></tr>
 <tr class="b">
-<td>43</td>
+<td>42</td>
 <td>0</td>
 <td>0</td>
 <td>0</td></tr></table></div>

Modified: websites/production/commons/content/proper/commons-rng/checkstyle.rss
==============================================================================
--- websites/production/commons/content/proper/commons-rng/checkstyle.rss (original)
+++ websites/production/commons/content/proper/commons-rng/checkstyle.rss Mon Aug 22 22:01:58 2016
@@ -25,7 +25,7 @@ under the License.
     <language>en-us</language>
     <copyright>&#169;2016 The Apache Software Foundation</copyright>
     <item>
-      <title>File: 43,
+      <title>File: 42,
              Errors: 0,
              Warnings: 0,
              Infos: 0
@@ -470,20 +470,6 @@ under the License.
                 </td>
                 <td>
                   0
-                </td>
-                <td>
-                  0
-                </td>
-                <td>
-                  0
-                </td>
-              </tr>
-                          <tr>
-                <td>
-                  <a href="http://commons.apache.org/proper/commons-rng//checkstyle.html#org.apache.commons.rng.internal.StateSettable.java">org/apache/commons/rng/internal/StateSettable.java</a>
-                </td>
-                <td>
-                  0
                 </td>
                 <td>
                   0

Modified: websites/production/commons/content/proper/commons-rng/cpd.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/cpd.html (original)
+++ websites/production/commons/content/proper/commons-rng/cpd.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; CPD Results</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/dependencies.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/dependencies.html (original)
+++ websites/production/commons/content/proper/commons-rng/dependencies.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Project Dependencies</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/dependency-convergence.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/dependency-convergence.html (original)
+++ websites/production/commons/content/proper/commons-rng/dependency-convergence.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Dependency Convergence</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/dependency-info.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/dependency-info.html (original)
+++ websites/production/commons/content/proper/commons-rng/dependency-info.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Dependency Information</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/developers.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/developers.html (original)
+++ websites/production/commons/content/proper/commons-rng/developers.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Developers Guide</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -93,18 +93,10 @@
                   <a href="http://git-wip-us.apache.org/repos/asf/commons-rng.git" class="externalLink" title="Source Repository (current)">
     Source Repository (current)</a>
           </li>
-                             <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
                                <li class="none active">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/distribution-management.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/distribution-management.html (original)
+++ websites/production/commons/content/proper/commons-rng/distribution-management.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Project Distribution Management</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/download_rng.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/download_rng.html (original)
+++ websites/production/commons/content/proper/commons-rng/download_rng.html Mon Aug 22 22:01:58 2016
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <meta name="author" content="Apache Commons Documentation Team" />
-    <meta name="Date-Revision-yyyymmdd" content="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Download Apache Commons Rng</title>
 
@@ -41,7 +41,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -95,17 +95,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/findbugs.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/findbugs.html (original)
+++ websites/production/commons/content/proper/commons-rng/findbugs.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; FindBugs Bug Detector Report</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>
@@ -289,7 +281,7 @@
 <th>Errors</th>
 <th>Missing Classes</th></tr>
 <tr class="b">
-<td>44</td>
+<td>42</td>
 <td>0</td>
 <td>0</td>
 <td>0</td></tr></table></div>

Modified: websites/production/commons/content/proper/commons-rng/images/commons_rng.small.png
==============================================================================
Binary files - no diff available.

Modified: websites/production/commons/content/proper/commons-rng/index.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/index.html (original)
+++ websites/production/commons/content/proper/commons-rng/index.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Commons Rng</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>
@@ -317,8 +309,10 @@
 
         
 <p>
-          <b>&quot;Beta-testers&quot; are welcome to test the library</b> by downloading the unofficial JAR (nightly builds) from
-          <a class="externalLink" href="https://repository.apache.org/content/repositories/snapshots/org/apache/commons/commons-rng/1.0-SNAPSHOT/">here</a>.
+          <b>&quot;Beta-testers&quot; are welcome to test the library</b> by downloading the
+          <a class="externalLink" href="https://repository.apache.org/content/repositories/snapshots/org/apache/commons/commons-rng/1.0-SNAPSHOT/">
+            <i><b>unofficial 1.0-SNAPSHOT JAR</b></i>
+          </a> that is generated through <a class="externalLink" href="https://builds.apache.org/view/Apache%20Commons/job/Commons_Rng/">continuous integration</a>.
         </p>
 
         <!-- <p> -->

Modified: websites/production/commons/content/proper/commons-rng/integration.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/integration.html (original)
+++ websites/production/commons/content/proper/commons-rng/integration.html Mon Aug 22 22:01:58 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | 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="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; CI Management</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -94,17 +94,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>

Modified: websites/production/commons/content/proper/commons-rng/issue-tracking.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/issue-tracking.html (original)
+++ websites/production/commons/content/proper/commons-rng/issue-tracking.html Mon Aug 22 22:01:58 2016
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 18 August 2016
+ | Generated by Apache Maven Doxia at 23 August 2016
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <meta name="author" content="Commons Documentation Team" />
-    <meta name="Date-Revision-yyyymmdd" content="20160818" />
+    <meta name="Date-Revision-yyyymmdd" content="20160823" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Rng &#x2013; Apache Commons Rng Issue tracking</title>
 
@@ -41,7 +41,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-rng/">Apache Commons Rng &trade;</a>
           <ul class="nav">      
                     
-            <li id="publishDate">Last Published: 18 August 2016</li>
+            <li id="publishDate">Last Published: 23 August 2016</li>
       <li class="divider">|</li> <li id="projectVersion">Version: 1.0-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
@@ -95,17 +95,9 @@
     Source Repository (current)</a>
           </li>
                              <li class="none">
-                  <a href="http://wiki.apache.org/commons/Rng" class="externalLink" title="Wiki">
-    Wiki</a>
-          </li>
-                             <li class="none">
                   <a href="developers.html" title="Developers Guide">
     Developers Guide</a>
           </li>
-                             <li class="none">
-                  <a href="proposal.html" title="Proposal">
-    Proposal</a>
-          </li>
                  </ul>
       <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-book"></i>User Guide</li>