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 [36/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-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplersList.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplersList.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/ContinuousSamplersList.html Thu Apr 20 11:33:45 2017
@@ -49,216 +49,227 @@
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> sigmaNormal = 6.789;
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.NormalDistribution(meanNormal, sigmaNormal),
 <a class="jxr_linenumber" name="L43" href="#L43">43</a>                  RandomSource.create(RandomSource.KISS));
-<a class="jxr_linenumber" name="L44" href="#L44">44</a>              <em class="jxr_comment">// Gaussian ("Box-Muller").</em>
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>              <em class="jxr_comment">// Gaussian (DEPRECATED "Box-Muller").</em>
 <a class="jxr_linenumber" name="L45" href="#L45">45</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.NormalDistribution(meanNormal, sigmaNormal),
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>                  <strong class="jxr_keyword">new</strong> BoxMullerGaussianSampler(RandomSource.create(RandomSource.MT), meanNormal, sigmaNormal));
-<a class="jxr_linenumber" name="L47" href="#L47">47</a>  
-<a class="jxr_linenumber" name="L48" href="#L48">48</a>              <em class="jxr_comment">// Beta ("inverse method").</em>
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaBeta = 4.3;
-<a class="jxr_linenumber" name="L50" href="#L50">50</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaBeta = 2.1;
-<a class="jxr_linenumber" name="L51" href="#L51">51</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(alphaBeta, betaBeta),
-<a class="jxr_linenumber" name="L52" href="#L52">52</a>                  RandomSource.create(RandomSource.ISAAC));
-<a class="jxr_linenumber" name="L53" href="#L53">53</a>              <em class="jxr_comment">// Beta ("Cheng").</em>
-<a class="jxr_linenumber" name="L54" href="#L54">54</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(alphaBeta, betaBeta),
-<a class="jxr_linenumber" name="L55" href="#L55">55</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.MWC_256), alphaBeta, betaBeta));
-<a class="jxr_linenumber" name="L56" href="#L56">56</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(betaBeta, alphaBeta),
-<a class="jxr_linenumber" name="L57" href="#L57">57</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.WELL_19937_A), betaBeta, alphaBeta));
-<a class="jxr_linenumber" name="L58" href="#L58">58</a>              <em class="jxr_comment">// Beta ("Cheng", alternate algorithm).</em>
-<a class="jxr_linenumber" name="L59" href="#L59">59</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaBetaAlt = 0.5678;
-<a class="jxr_linenumber" name="L60" href="#L60">60</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaBetaAlt = 0.1234;
-<a class="jxr_linenumber" name="L61" href="#L61">61</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(alphaBetaAlt, betaBetaAlt),
-<a class="jxr_linenumber" name="L62" href="#L62">62</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.WELL_512_A), alphaBetaAlt, betaBetaAlt));
-<a class="jxr_linenumber" name="L63" href="#L63">63</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(betaBetaAlt, alphaBetaAlt),
-<a class="jxr_linenumber" name="L64" href="#L64">64</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.WELL_19937_C), betaBetaAlt, alphaBetaAlt));
-<a class="jxr_linenumber" name="L65" href="#L65">65</a>  
-<a class="jxr_linenumber" name="L66" href="#L66">66</a>              <em class="jxr_comment">// Cauchy ("inverse method").</em>
-<a class="jxr_linenumber" name="L67" href="#L67">67</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> medianCauchy = 0.123;
-<a class="jxr_linenumber" name="L68" href="#L68">68</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> scaleCauchy = 4.5;
-<a class="jxr_linenumber" name="L69" href="#L69">69</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.CauchyDistribution(medianCauchy, scaleCauchy),
-<a class="jxr_linenumber" name="L70" href="#L70">70</a>                  RandomSource.create(RandomSource.WELL_19937_C));
-<a class="jxr_linenumber" name="L71" href="#L71">71</a>  
-<a class="jxr_linenumber" name="L72" href="#L72">72</a>              <em class="jxr_comment">// Chi-square ("inverse method").</em>
-<a class="jxr_linenumber" name="L73" href="#L73">73</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> dofChi2 = 12;
-<a class="jxr_linenumber" name="L74" href="#L74">74</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ChiSquaredDistribution(dofChi2),
-<a class="jxr_linenumber" name="L75" href="#L75">75</a>                  RandomSource.create(RandomSource.WELL_19937_A));
-<a class="jxr_linenumber" name="L76" href="#L76">76</a>  
-<a class="jxr_linenumber" name="L77" href="#L77">77</a>              <em class="jxr_comment">// Exponential ("inverse method").</em>
-<a class="jxr_linenumber" name="L78" href="#L78">78</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> meanExp = 3.45;
-<a class="jxr_linenumber" name="L79" href="#L79">79</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ExponentialDistribution(meanExp),
-<a class="jxr_linenumber" name="L80" href="#L80">80</a>                  RandomSource.create(RandomSource.WELL_44497_A));
-<a class="jxr_linenumber" name="L81" href="#L81">81</a>              <em class="jxr_comment">// Exponential.</em>
-<a class="jxr_linenumber" name="L82" href="#L82">82</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ExponentialDistribution(meanExp),
-<a class="jxr_linenumber" name="L83" href="#L83">83</a>                  <strong class="jxr_keyword">new</strong> AhrensDieterExponentialSampler(RandomSource.create(RandomSource.MT), meanExp));
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>              <em class="jxr_comment">// Gaussian ("Box-Muller").</em>
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.NormalDistribution(meanNormal, sigmaNormal),
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>                  <strong class="jxr_keyword">new</strong> GaussianSampler(<strong class="jxr_keyword">new</strong> BoxMullerNormalizedGaussianSampler(RandomSource.create(RandomSource.MT)),
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>                                      meanNormal, sigmaNormal));
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>              <em class="jxr_comment">// Gaussian ("Marsaglia").</em>
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.NormalDistribution(meanNormal, sigmaNormal),
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>                  <strong class="jxr_keyword">new</strong> GaussianSampler(<strong class="jxr_keyword">new</strong> MarsagliaNormalizedGaussianSampler(RandomSource.create(RandomSource.MT)),
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>                                      meanNormal, sigmaNormal));
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>  
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>              <em class="jxr_comment">// Beta ("inverse method").</em>
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaBeta = 4.3;
+<a class="jxr_linenumber" name="L58" href="#L58">58</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaBeta = 2.1;
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(alphaBeta, betaBeta),
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>                  RandomSource.create(RandomSource.ISAAC));
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>              <em class="jxr_comment">// Beta ("Cheng").</em>
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(alphaBeta, betaBeta),
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.MWC_256), alphaBeta, betaBeta));
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(betaBeta, alphaBeta),
+<a class="jxr_linenumber" name="L65" href="#L65">65</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.WELL_19937_A), betaBeta, alphaBeta));
+<a class="jxr_linenumber" name="L66" href="#L66">66</a>              <em class="jxr_comment">// Beta ("Cheng", alternate algorithm).</em>
+<a class="jxr_linenumber" name="L67" href="#L67">67</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaBetaAlt = 0.5678;
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaBetaAlt = 0.1234;
+<a class="jxr_linenumber" name="L69" href="#L69">69</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(alphaBetaAlt, betaBetaAlt),
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.WELL_512_A), alphaBetaAlt, betaBetaAlt));
+<a class="jxr_linenumber" name="L71" href="#L71">71</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.BetaDistribution(betaBetaAlt, alphaBetaAlt),
+<a class="jxr_linenumber" name="L72" href="#L72">72</a>                  <strong class="jxr_keyword">new</strong> ChengBetaSampler(RandomSource.create(RandomSource.WELL_19937_C), betaBetaAlt, alphaBetaAlt));
+<a class="jxr_linenumber" name="L73" href="#L73">73</a>  
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>              <em class="jxr_comment">// Cauchy ("inverse method").</em>
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> medianCauchy = 0.123;
+<a class="jxr_linenumber" name="L76" href="#L76">76</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> scaleCauchy = 4.5;
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.CauchyDistribution(medianCauchy, scaleCauchy),
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>                  RandomSource.create(RandomSource.WELL_19937_C));
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>  
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>              <em class="jxr_comment">// Chi-square ("inverse method").</em>
+<a class="jxr_linenumber" name="L81" href="#L81">81</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> dofChi2 = 12;
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ChiSquaredDistribution(dofChi2),
+<a class="jxr_linenumber" name="L83" href="#L83">83</a>                  RandomSource.create(RandomSource.WELL_19937_A));
 <a class="jxr_linenumber" name="L84" href="#L84">84</a>  
-<a class="jxr_linenumber" name="L85" href="#L85">85</a>              <em class="jxr_comment">// F ("inverse method").</em>
-<a class="jxr_linenumber" name="L86" href="#L86">86</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> numDofF = 4;
-<a class="jxr_linenumber" name="L87" href="#L87">87</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> denomDofF = 7;
-<a class="jxr_linenumber" name="L88" href="#L88">88</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.FDistribution(numDofF, denomDofF),
-<a class="jxr_linenumber" name="L89" href="#L89">89</a>                  RandomSource.create(RandomSource.MT_64));
-<a class="jxr_linenumber" name="L90" href="#L90">90</a>  
-<a class="jxr_linenumber" name="L91" href="#L91">91</a>              <em class="jxr_comment">// Gamma ("inverse method").</em>
-<a class="jxr_linenumber" name="L92" href="#L92">92</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> thetaGammaSmallerThanOne = 0.1234;
-<a class="jxr_linenumber" name="L93" href="#L93">93</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> thetaGammaLargerThanOne = 2.345;
-<a class="jxr_linenumber" name="L94" href="#L94">94</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaGamma = 3.456;
-<a class="jxr_linenumber" name="L95" href="#L95">95</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GammaDistribution(thetaGammaLargerThanOne, alphaGamma),
-<a class="jxr_linenumber" name="L96" href="#L96">96</a>                  RandomSource.create(RandomSource.SPLIT_MIX_64));
-<a class="jxr_linenumber" name="L97" href="#L97">97</a>              <em class="jxr_comment">// Gamma (theta &lt; 1).</em>
-<a class="jxr_linenumber" name="L98" href="#L98">98</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GammaDistribution(thetaGammaSmallerThanOne, alphaGamma),
-<a class="jxr_linenumber" name="L99" href="#L99">99</a>                  <strong class="jxr_keyword">new</strong> AhrensDieterMarsagliaTsangGammaSampler(RandomSource.create(RandomSource.XOR_SHIFT_1024_S),
-<a class="jxr_linenumber" name="L100" href="#L100">100</a>                                                            alphaGamma, thetaGammaSmallerThanOne));
-<a class="jxr_linenumber" name="L101" href="#L101">101</a>             <em class="jxr_comment">// Gamma (theta &gt; 1).</em>
-<a class="jxr_linenumber" name="L102" href="#L102">102</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GammaDistribution(thetaGammaLargerThanOne, alphaGamma),
-<a class="jxr_linenumber" name="L103" href="#L103">103</a>                 <strong class="jxr_keyword">new</strong> AhrensDieterMarsagliaTsangGammaSampler(RandomSource.create(RandomSource.WELL_44497_B),
-<a class="jxr_linenumber" name="L104" href="#L104">104</a>                                                            alphaGamma, thetaGammaLargerThanOne));
-<a class="jxr_linenumber" name="L105" href="#L105">105</a> 
-<a class="jxr_linenumber" name="L106" href="#L106">106</a>             <em class="jxr_comment">// Gumbel ("inverse method").</em>
-<a class="jxr_linenumber" name="L107" href="#L107">107</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muGumbel = -4.56;
-<a class="jxr_linenumber" name="L108" href="#L108">108</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaGumbel = 0.123;
-<a class="jxr_linenumber" name="L109" href="#L109">109</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GumbelDistribution(muGumbel, betaGumbel),
-<a class="jxr_linenumber" name="L110" href="#L110">110</a>                 RandomSource.create(RandomSource.WELL_1024_A));
-<a class="jxr_linenumber" name="L111" href="#L111">111</a> 
-<a class="jxr_linenumber" name="L112" href="#L112">112</a>             <em class="jxr_comment">// Laplace ("inverse method").</em>
-<a class="jxr_linenumber" name="L113" href="#L113">113</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muLaplace = 12.3;
-<a class="jxr_linenumber" name="L114" href="#L114">114</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaLaplace = 5.6;
-<a class="jxr_linenumber" name="L115" href="#L115">115</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LaplaceDistribution(muLaplace, betaLaplace),
-<a class="jxr_linenumber" name="L116" href="#L116">116</a>                 RandomSource.create(RandomSource.MWC_256));
-<a class="jxr_linenumber" name="L117" href="#L117">117</a> 
-<a class="jxr_linenumber" name="L118" href="#L118">118</a>             <em class="jxr_comment">// Levy ("inverse method").</em>
-<a class="jxr_linenumber" name="L119" href="#L119">119</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muLevy = -1.098;
-<a class="jxr_linenumber" name="L120" href="#L120">120</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> cLevy = 0.76;
-<a class="jxr_linenumber" name="L121" href="#L121">121</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LevyDistribution(muLevy, cLevy),
-<a class="jxr_linenumber" name="L122" href="#L122">122</a>                 RandomSource.create(RandomSource.TWO_CMRES));
-<a class="jxr_linenumber" name="L123" href="#L123">123</a> 
-<a class="jxr_linenumber" name="L124" href="#L124">124</a>             <em class="jxr_comment">// Log normal ("inverse method").</em>
-<a class="jxr_linenumber" name="L125" href="#L125">125</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> scaleLogNormal = 23.45;
-<a class="jxr_linenumber" name="L126" href="#L126">126</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> shapeLogNormal = 0.1234;
-<a class="jxr_linenumber" name="L127" href="#L127">127</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LogNormalDistribution(scaleLogNormal, shapeLogNormal),
-<a class="jxr_linenumber" name="L128" href="#L128">128</a>                 RandomSource.create(RandomSource.KISS));
-<a class="jxr_linenumber" name="L129" href="#L129">129</a>             <em class="jxr_comment">// Log normal ("Box-Muller").</em>
-<a class="jxr_linenumber" name="L130" href="#L130">130</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LogNormalDistribution(scaleLogNormal, shapeLogNormal),
-<a class="jxr_linenumber" name="L131" href="#L131">131</a>                 <strong class="jxr_keyword">new</strong> BoxMullerLogNormalSampler(RandomSource.create(RandomSource.XOR_SHIFT_1024_S), scaleLogNormal, shapeLogNormal));
-<a class="jxr_linenumber" name="L132" href="#L132">132</a> 
-<a class="jxr_linenumber" name="L133" href="#L133">133</a>             <em class="jxr_comment">// Logistic ("inverse method").</em>
-<a class="jxr_linenumber" name="L134" href="#L134">134</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muLogistic = -123.456;
-<a class="jxr_linenumber" name="L135" href="#L135">135</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> sLogistic = 7.89;
-<a class="jxr_linenumber" name="L136" href="#L136">136</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LogisticDistribution(muLogistic, sLogistic),
-<a class="jxr_linenumber" name="L137" href="#L137">137</a>                 RandomSource.create(RandomSource.TWO_CMRES_SELECT, <strong class="jxr_keyword">null</strong>, 2, 6));
-<a class="jxr_linenumber" name="L138" href="#L138">138</a> 
-<a class="jxr_linenumber" name="L139" href="#L139">139</a>             <em class="jxr_comment">// Nakagami ("inverse method").</em>
-<a class="jxr_linenumber" name="L140" href="#L140">140</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muNakagami = 78.9;
-<a class="jxr_linenumber" name="L141" href="#L141">141</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> omegaNakagami = 23.4;
-<a class="jxr_linenumber" name="L142" href="#L142">142</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.NakagamiDistribution(muNakagami, omegaNakagami),
-<a class="jxr_linenumber" name="L143" href="#L143">143</a>                 RandomSource.create(RandomSource.TWO_CMRES_SELECT, <strong class="jxr_keyword">null</strong>, 5, 3));
-<a class="jxr_linenumber" name="L144" href="#L144">144</a> 
-<a class="jxr_linenumber" name="L145" href="#L145">145</a>             <em class="jxr_comment">// Pareto ("inverse method").</em>
-<a class="jxr_linenumber" name="L146" href="#L146">146</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> scalePareto = 23.45;
-<a class="jxr_linenumber" name="L147" href="#L147">147</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> shapePareto = 0.1234;
-<a class="jxr_linenumber" name="L148" href="#L148">148</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ParetoDistribution(scalePareto, shapePareto),
-<a class="jxr_linenumber" name="L149" href="#L149">149</a>                 RandomSource.create(RandomSource.TWO_CMRES_SELECT, <strong class="jxr_keyword">null</strong>, 9, 11));
-<a class="jxr_linenumber" name="L150" href="#L150">150</a>             <em class="jxr_comment">// Pareto.</em>
-<a class="jxr_linenumber" name="L151" href="#L151">151</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ParetoDistribution(scalePareto, shapePareto),
-<a class="jxr_linenumber" name="L152" href="#L152">152</a>                 <strong class="jxr_keyword">new</strong> InverseTransformParetoSampler(RandomSource.create(RandomSource.XOR_SHIFT_1024_S), scalePareto, shapePareto));
-<a class="jxr_linenumber" name="L153" href="#L153">153</a> 
-<a class="jxr_linenumber" name="L154" href="#L154">154</a>             <em class="jxr_comment">// T ("inverse method").</em>
-<a class="jxr_linenumber" name="L155" href="#L155">155</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> dofT = 0.76543;
-<a class="jxr_linenumber" name="L156" href="#L156">156</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.TDistribution(dofT),
-<a class="jxr_linenumber" name="L157" href="#L157">157</a>                 RandomSource.create(RandomSource.ISAAC));
-<a class="jxr_linenumber" name="L158" href="#L158">158</a> 
-<a class="jxr_linenumber" name="L159" href="#L159">159</a>             <em class="jxr_comment">// Triangular ("inverse method").</em>
-<a class="jxr_linenumber" name="L160" href="#L160">160</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> aTriangle = -0.76543;
-<a class="jxr_linenumber" name="L161" href="#L161">161</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> cTriangle = -0.65432;
-<a class="jxr_linenumber" name="L162" href="#L162">162</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> bTriangle = -0.54321;
-<a class="jxr_linenumber" name="L163" href="#L163">163</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.TriangularDistribution(aTriangle, cTriangle, bTriangle),
-<a class="jxr_linenumber" name="L164" href="#L164">164</a>                 RandomSource.create(RandomSource.MT));
-<a class="jxr_linenumber" name="L165" href="#L165">165</a> 
-<a class="jxr_linenumber" name="L166" href="#L166">166</a>             <em class="jxr_comment">// Uniform ("inverse method").</em>
-<a class="jxr_linenumber" name="L167" href="#L167">167</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> loUniform = -1.098;
-<a class="jxr_linenumber" name="L168" href="#L168">168</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> hiUniform = 0.76;
-<a class="jxr_linenumber" name="L169" href="#L169">169</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.UniformRealDistribution(loUniform, hiUniform),
-<a class="jxr_linenumber" name="L170" href="#L170">170</a>                 RandomSource.create(RandomSource.TWO_CMRES));
-<a class="jxr_linenumber" name="L171" href="#L171">171</a>             <em class="jxr_comment">// Uniform.</em>
-<a class="jxr_linenumber" name="L172" href="#L172">172</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.UniformRealDistribution(loUniform, hiUniform),
-<a class="jxr_linenumber" name="L173" href="#L173">173</a>                 <strong class="jxr_keyword">new</strong> ContinuousUniformSampler(RandomSource.create(RandomSource.MT_64), loUniform, hiUniform));
-<a class="jxr_linenumber" name="L174" href="#L174">174</a> 
-<a class="jxr_linenumber" name="L175" href="#L175">175</a>             <em class="jxr_comment">// Weibull ("inverse method").</em>
-<a class="jxr_linenumber" name="L176" href="#L176">176</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaWeibull = 678.9;
-<a class="jxr_linenumber" name="L177" href="#L177">177</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaWeibull = 98.76;
-<a class="jxr_linenumber" name="L178" href="#L178">178</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.WeibullDistribution(alphaWeibull, betaWeibull),
-<a class="jxr_linenumber" name="L179" href="#L179">179</a>                 RandomSource.create(RandomSource.WELL_44497_B));
-<a class="jxr_linenumber" name="L180" href="#L180">180</a>         } <strong class="jxr_keyword">catch</strong> (Exception e) {
-<a class="jxr_linenumber" name="L181" href="#L181">181</a>             System.err.println(<span class="jxr_string">"Unexpected exception while creating the list of samplers: "</span> + e);
-<a class="jxr_linenumber" name="L182" href="#L182">182</a>             e.printStackTrace(System.err);
-<a class="jxr_linenumber" name="L183" href="#L183">183</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> RuntimeException(e);
-<a class="jxr_linenumber" name="L184" href="#L184">184</a>         }
-<a class="jxr_linenumber" name="L185" href="#L185">185</a>     }
-<a class="jxr_linenumber" name="L186" href="#L186">186</a> 
-<a class="jxr_linenumber" name="L187" href="#L187">187</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L188" href="#L188">188</a> <em class="jxr_javadoccomment">     * Class contains only static methods.</em>
-<a class="jxr_linenumber" name="L189" href="#L189">189</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L190" href="#L190">190</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSamplersList.html">ContinuousSamplersList</a>() {}
-<a class="jxr_linenumber" name="L191" href="#L191">191</a> 
-<a class="jxr_linenumber" name="L192" href="#L192">192</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L193" href="#L193">193</a> <em class="jxr_javadoccomment">     * @param list List of data (one the "parameters" tested by the Junit parametric test).</em>
-<a class="jxr_linenumber" name="L194" href="#L194">194</a> <em class="jxr_javadoccomment">     * @param dist Distribution to which the samples are supposed to conform.</em>
-<a class="jxr_linenumber" name="L195" href="#L195">195</a> <em class="jxr_javadoccomment">     * @param rng Generator of uniformly distributed sequences.</em>
-<a class="jxr_linenumber" name="L196" href="#L196">196</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L197" href="#L197">197</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> add(List&lt;ContinuousSamplerTestData[]&gt; list,
-<a class="jxr_linenumber" name="L198" href="#L198">198</a>                             <strong class="jxr_keyword">final</strong> org.apache.commons.math3.distribution.RealDistribution dist,
-<a class="jxr_linenumber" name="L199" href="#L199">199</a>                             UniformRandomProvider rng) {
-<a class="jxr_linenumber" name="L200" href="#L200">200</a>         <strong class="jxr_keyword">final</strong> ContinuousSampler inverseMethodSampler =
-<a class="jxr_linenumber" name="L201" href="#L201">201</a>             <strong class="jxr_keyword">new</strong> InverseTransformContinuousSampler(rng,
-<a class="jxr_linenumber" name="L202" href="#L202">202</a>                                                   <strong class="jxr_keyword">new</strong> ContinuousInverseCumulativeProbabilityFunction() {
-<a class="jxr_linenumber" name="L203" href="#L203">203</a>                                                       @Override
-<a class="jxr_linenumber" name="L204" href="#L204">204</a>                                                       <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">double</strong> inverseCumulativeProbability(<strong class="jxr_keyword">double</strong> p) {
-<a class="jxr_linenumber" name="L205" href="#L205">205</a>                                                           <strong class="jxr_keyword">return</strong> dist.inverseCumulativeProbability(p);
-<a class="jxr_linenumber" name="L206" href="#L206">206</a>                                                       }
-<a class="jxr_linenumber" name="L207" href="#L207">207</a>                                                       @Override
-<a class="jxr_linenumber" name="L208" href="#L208">208</a>                                                       <strong class="jxr_keyword">public</strong> String toString() {
-<a class="jxr_linenumber" name="L209" href="#L209">209</a>                                                           <strong class="jxr_keyword">return</strong> dist.toString();
-<a class="jxr_linenumber" name="L210" href="#L210">210</a>                                                       }
-<a class="jxr_linenumber" name="L211" href="#L211">211</a>                                                   });
-<a class="jxr_linenumber" name="L212" href="#L212">212</a>         list.add(<strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSamplerTestData.html">ContinuousSamplerTestData</a>[] { <strong class="jxr_keyword">new</strong> ContinuousSamplerTestData(inverseMethodSampler,
-<a class="jxr_linenumber" name="L213" href="#L213">213</a>                                                                                  getDeciles(dist)) });
-<a class="jxr_linenumber" name="L214" href="#L214">214</a>      }
-<a class="jxr_linenumber" name="L215" href="#L215">215</a> 
-<a class="jxr_linenumber" name="L216" href="#L216">216</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L217" href="#L217">217</a> <em class="jxr_javadoccomment">     * @param list List of data (one the "parameters" tested by the Junit parametric test).</em>
-<a class="jxr_linenumber" name="L218" href="#L218">218</a> <em class="jxr_javadoccomment">     * @param dist Distribution to which the samples are supposed to conform.</em>
-<a class="jxr_linenumber" name="L219" href="#L219">219</a> <em class="jxr_javadoccomment">     * @param sampler Sampler.</em>
-<a class="jxr_linenumber" name="L220" href="#L220">220</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L221" href="#L221">221</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> add(List&lt;ContinuousSamplerTestData[]&gt; list,
-<a class="jxr_linenumber" name="L222" href="#L222">222</a>                             <strong class="jxr_keyword">final</strong> org.apache.commons.math3.distribution.RealDistribution dist,
-<a class="jxr_linenumber" name="L223" href="#L223">223</a>                             <strong class="jxr_keyword">final</strong> ContinuousSampler sampler) {
-<a class="jxr_linenumber" name="L224" href="#L224">224</a>         list.add(<strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSamplerTestData.html">ContinuousSamplerTestData</a>[] { <strong class="jxr_keyword">new</strong> ContinuousSamplerTestData(sampler,
-<a class="jxr_linenumber" name="L225" href="#L225">225</a>                                                                                  getDeciles(dist)) });
-<a class="jxr_linenumber" name="L226" href="#L226">226</a>     }
-<a class="jxr_linenumber" name="L227" href="#L227">227</a> 
-<a class="jxr_linenumber" name="L228" href="#L228">228</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L229" href="#L229">229</a> <em class="jxr_javadoccomment">     * Subclasses that are "parametric" tests can forward the call to</em>
-<a class="jxr_linenumber" name="L230" href="#L230">230</a> <em class="jxr_javadoccomment">     * the "@Parameters"-annotated method to this method.</em>
-<a class="jxr_linenumber" name="L231" href="#L231">231</a> <em class="jxr_javadoccomment">     *</em>
-<a class="jxr_linenumber" name="L232" href="#L232">232</a> <em class="jxr_javadoccomment">     * @return the list of all generators.</em>
-<a class="jxr_linenumber" name="L233" href="#L233">233</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L234" href="#L234">234</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> Iterable&lt;ContinuousSamplerTestData[]&gt; list() {
-<a class="jxr_linenumber" name="L235" href="#L235">235</a>         <strong class="jxr_keyword">return</strong> Collections.unmodifiableList(LIST);
-<a class="jxr_linenumber" name="L236" href="#L236">236</a>     }
-<a class="jxr_linenumber" name="L237" href="#L237">237</a> 
-<a class="jxr_linenumber" name="L238" href="#L238">238</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L239" href="#L239">239</a> <em class="jxr_javadoccomment">     * @param dist Distribution.</em>
-<a class="jxr_linenumber" name="L240" href="#L240">240</a> <em class="jxr_javadoccomment">     * @return the deciles of the given distribution. </em>
-<a class="jxr_linenumber" name="L241" href="#L241">241</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L242" href="#L242">242</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">double</strong>[] getDeciles(org.apache.commons.math3.distribution.RealDistribution dist) {
-<a class="jxr_linenumber" name="L243" href="#L243">243</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> last = 9;
-<a class="jxr_linenumber" name="L244" href="#L244">244</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong>[] deciles = <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">double</strong>[last];
-<a class="jxr_linenumber" name="L245" href="#L245">245</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> ten = 10;
-<a class="jxr_linenumber" name="L246" href="#L246">246</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; last; i++) {
-<a class="jxr_linenumber" name="L247" href="#L247">247</a>             deciles[i] = dist.inverseCumulativeProbability((i + 1) / ten);
-<a class="jxr_linenumber" name="L248" href="#L248">248</a>         }
-<a class="jxr_linenumber" name="L249" href="#L249">249</a>         <strong class="jxr_keyword">return</strong> deciles;
-<a class="jxr_linenumber" name="L250" href="#L250">250</a>     }
-<a class="jxr_linenumber" name="L251" href="#L251">251</a> }
+<a class="jxr_linenumber" name="L85" href="#L85">85</a>              <em class="jxr_comment">// Exponential ("inverse method").</em>
+<a class="jxr_linenumber" name="L86" href="#L86">86</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> meanExp = 3.45;
+<a class="jxr_linenumber" name="L87" href="#L87">87</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ExponentialDistribution(meanExp),
+<a class="jxr_linenumber" name="L88" href="#L88">88</a>                  RandomSource.create(RandomSource.WELL_44497_A));
+<a class="jxr_linenumber" name="L89" href="#L89">89</a>              <em class="jxr_comment">// Exponential.</em>
+<a class="jxr_linenumber" name="L90" href="#L90">90</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ExponentialDistribution(meanExp),
+<a class="jxr_linenumber" name="L91" href="#L91">91</a>                  <strong class="jxr_keyword">new</strong> AhrensDieterExponentialSampler(RandomSource.create(RandomSource.MT), meanExp));
+<a class="jxr_linenumber" name="L92" href="#L92">92</a>  
+<a class="jxr_linenumber" name="L93" href="#L93">93</a>              <em class="jxr_comment">// F ("inverse method").</em>
+<a class="jxr_linenumber" name="L94" href="#L94">94</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> numDofF = 4;
+<a class="jxr_linenumber" name="L95" href="#L95">95</a>              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> denomDofF = 7;
+<a class="jxr_linenumber" name="L96" href="#L96">96</a>              add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.FDistribution(numDofF, denomDofF),
+<a class="jxr_linenumber" name="L97" href="#L97">97</a>                  RandomSource.create(RandomSource.MT_64));
+<a class="jxr_linenumber" name="L98" href="#L98">98</a>  
+<a class="jxr_linenumber" name="L99" href="#L99">99</a>              <em class="jxr_comment">// Gamma ("inverse method").</em>
+<a class="jxr_linenumber" name="L100" href="#L100">100</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> thetaGammaSmallerThanOne = 0.1234;
+<a class="jxr_linenumber" name="L101" href="#L101">101</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> thetaGammaLargerThanOne = 2.345;
+<a class="jxr_linenumber" name="L102" href="#L102">102</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaGamma = 3.456;
+<a class="jxr_linenumber" name="L103" href="#L103">103</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GammaDistribution(thetaGammaLargerThanOne, alphaGamma),
+<a class="jxr_linenumber" name="L104" href="#L104">104</a>                 RandomSource.create(RandomSource.SPLIT_MIX_64));
+<a class="jxr_linenumber" name="L105" href="#L105">105</a>             <em class="jxr_comment">// Gamma (theta &lt; 1).</em>
+<a class="jxr_linenumber" name="L106" href="#L106">106</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GammaDistribution(thetaGammaSmallerThanOne, alphaGamma),
+<a class="jxr_linenumber" name="L107" href="#L107">107</a>                 <strong class="jxr_keyword">new</strong> AhrensDieterMarsagliaTsangGammaSampler(RandomSource.create(RandomSource.XOR_SHIFT_1024_S),
+<a class="jxr_linenumber" name="L108" href="#L108">108</a>                                                            alphaGamma, thetaGammaSmallerThanOne));
+<a class="jxr_linenumber" name="L109" href="#L109">109</a>             <em class="jxr_comment">// Gamma (theta &gt; 1).</em>
+<a class="jxr_linenumber" name="L110" href="#L110">110</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GammaDistribution(thetaGammaLargerThanOne, alphaGamma),
+<a class="jxr_linenumber" name="L111" href="#L111">111</a>                 <strong class="jxr_keyword">new</strong> AhrensDieterMarsagliaTsangGammaSampler(RandomSource.create(RandomSource.WELL_44497_B),
+<a class="jxr_linenumber" name="L112" href="#L112">112</a>                                                            alphaGamma, thetaGammaLargerThanOne));
+<a class="jxr_linenumber" name="L113" href="#L113">113</a> 
+<a class="jxr_linenumber" name="L114" href="#L114">114</a>             <em class="jxr_comment">// Gumbel ("inverse method").</em>
+<a class="jxr_linenumber" name="L115" href="#L115">115</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muGumbel = -4.56;
+<a class="jxr_linenumber" name="L116" href="#L116">116</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaGumbel = 0.123;
+<a class="jxr_linenumber" name="L117" href="#L117">117</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.GumbelDistribution(muGumbel, betaGumbel),
+<a class="jxr_linenumber" name="L118" href="#L118">118</a>                 RandomSource.create(RandomSource.WELL_1024_A));
+<a class="jxr_linenumber" name="L119" href="#L119">119</a> 
+<a class="jxr_linenumber" name="L120" href="#L120">120</a>             <em class="jxr_comment">// Laplace ("inverse method").</em>
+<a class="jxr_linenumber" name="L121" href="#L121">121</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muLaplace = 12.3;
+<a class="jxr_linenumber" name="L122" href="#L122">122</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaLaplace = 5.6;
+<a class="jxr_linenumber" name="L123" href="#L123">123</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LaplaceDistribution(muLaplace, betaLaplace),
+<a class="jxr_linenumber" name="L124" href="#L124">124</a>                 RandomSource.create(RandomSource.MWC_256));
+<a class="jxr_linenumber" name="L125" href="#L125">125</a> 
+<a class="jxr_linenumber" name="L126" href="#L126">126</a>             <em class="jxr_comment">// Levy ("inverse method").</em>
+<a class="jxr_linenumber" name="L127" href="#L127">127</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muLevy = -1.098;
+<a class="jxr_linenumber" name="L128" href="#L128">128</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> cLevy = 0.76;
+<a class="jxr_linenumber" name="L129" href="#L129">129</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LevyDistribution(muLevy, cLevy),
+<a class="jxr_linenumber" name="L130" href="#L130">130</a>                 RandomSource.create(RandomSource.TWO_CMRES));
+<a class="jxr_linenumber" name="L131" href="#L131">131</a> 
+<a class="jxr_linenumber" name="L132" href="#L132">132</a>             <em class="jxr_comment">// Log normal ("inverse method").</em>
+<a class="jxr_linenumber" name="L133" href="#L133">133</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> scaleLogNormal = 23.45;
+<a class="jxr_linenumber" name="L134" href="#L134">134</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> shapeLogNormal = 0.1234;
+<a class="jxr_linenumber" name="L135" href="#L135">135</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LogNormalDistribution(scaleLogNormal, shapeLogNormal),
+<a class="jxr_linenumber" name="L136" href="#L136">136</a>                 RandomSource.create(RandomSource.KISS));
+<a class="jxr_linenumber" name="L137" href="#L137">137</a>             <em class="jxr_comment">// Log normal ("Box-Muller").</em>
+<a class="jxr_linenumber" name="L138" href="#L138">138</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LogNormalDistribution(scaleLogNormal, shapeLogNormal),
+<a class="jxr_linenumber" name="L139" href="#L139">139</a>                 <strong class="jxr_keyword">new</strong> BoxMullerLogNormalSampler(RandomSource.create(RandomSource.XOR_SHIFT_1024_S), scaleLogNormal, shapeLogNormal));
+<a class="jxr_linenumber" name="L140" href="#L140">140</a>             <em class="jxr_comment">// Log normal ("Marsaglia").</em>
+<a class="jxr_linenumber" name="L141" href="#L141">141</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LogNormalDistribution(scaleLogNormal, shapeLogNormal),
+<a class="jxr_linenumber" name="L142" href="#L142">142</a>                 <strong class="jxr_keyword">new</strong> MarsagliaLogNormalSampler(RandomSource.create(RandomSource.MT_64), scaleLogNormal, shapeLogNormal));
+<a class="jxr_linenumber" name="L143" href="#L143">143</a> 
+<a class="jxr_linenumber" name="L144" href="#L144">144</a>             <em class="jxr_comment">// Logistic ("inverse method").</em>
+<a class="jxr_linenumber" name="L145" href="#L145">145</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muLogistic = -123.456;
+<a class="jxr_linenumber" name="L146" href="#L146">146</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> sLogistic = 7.89;
+<a class="jxr_linenumber" name="L147" href="#L147">147</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.LogisticDistribution(muLogistic, sLogistic),
+<a class="jxr_linenumber" name="L148" href="#L148">148</a>                 RandomSource.create(RandomSource.TWO_CMRES_SELECT, <strong class="jxr_keyword">null</strong>, 2, 6));
+<a class="jxr_linenumber" name="L149" href="#L149">149</a> 
+<a class="jxr_linenumber" name="L150" href="#L150">150</a>             <em class="jxr_comment">// Nakagami ("inverse method").</em>
+<a class="jxr_linenumber" name="L151" href="#L151">151</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> muNakagami = 78.9;
+<a class="jxr_linenumber" name="L152" href="#L152">152</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> omegaNakagami = 23.4;
+<a class="jxr_linenumber" name="L153" href="#L153">153</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.NakagamiDistribution(muNakagami, omegaNakagami),
+<a class="jxr_linenumber" name="L154" href="#L154">154</a>                 RandomSource.create(RandomSource.TWO_CMRES_SELECT, <strong class="jxr_keyword">null</strong>, 5, 3));
+<a class="jxr_linenumber" name="L155" href="#L155">155</a> 
+<a class="jxr_linenumber" name="L156" href="#L156">156</a>             <em class="jxr_comment">// Pareto ("inverse method").</em>
+<a class="jxr_linenumber" name="L157" href="#L157">157</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> scalePareto = 23.45;
+<a class="jxr_linenumber" name="L158" href="#L158">158</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> shapePareto = 0.1234;
+<a class="jxr_linenumber" name="L159" href="#L159">159</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ParetoDistribution(scalePareto, shapePareto),
+<a class="jxr_linenumber" name="L160" href="#L160">160</a>                 RandomSource.create(RandomSource.TWO_CMRES_SELECT, <strong class="jxr_keyword">null</strong>, 9, 11));
+<a class="jxr_linenumber" name="L161" href="#L161">161</a>             <em class="jxr_comment">// Pareto.</em>
+<a class="jxr_linenumber" name="L162" href="#L162">162</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.ParetoDistribution(scalePareto, shapePareto),
+<a class="jxr_linenumber" name="L163" href="#L163">163</a>                 <strong class="jxr_keyword">new</strong> InverseTransformParetoSampler(RandomSource.create(RandomSource.XOR_SHIFT_1024_S), scalePareto, shapePareto));
+<a class="jxr_linenumber" name="L164" href="#L164">164</a> 
+<a class="jxr_linenumber" name="L165" href="#L165">165</a>             <em class="jxr_comment">// T ("inverse method").</em>
+<a class="jxr_linenumber" name="L166" href="#L166">166</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> dofT = 0.76543;
+<a class="jxr_linenumber" name="L167" href="#L167">167</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.TDistribution(dofT),
+<a class="jxr_linenumber" name="L168" href="#L168">168</a>                 RandomSource.create(RandomSource.ISAAC));
+<a class="jxr_linenumber" name="L169" href="#L169">169</a> 
+<a class="jxr_linenumber" name="L170" href="#L170">170</a>             <em class="jxr_comment">// Triangular ("inverse method").</em>
+<a class="jxr_linenumber" name="L171" href="#L171">171</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> aTriangle = -0.76543;
+<a class="jxr_linenumber" name="L172" href="#L172">172</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> cTriangle = -0.65432;
+<a class="jxr_linenumber" name="L173" href="#L173">173</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> bTriangle = -0.54321;
+<a class="jxr_linenumber" name="L174" href="#L174">174</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.TriangularDistribution(aTriangle, cTriangle, bTriangle),
+<a class="jxr_linenumber" name="L175" href="#L175">175</a>                 RandomSource.create(RandomSource.MT));
+<a class="jxr_linenumber" name="L176" href="#L176">176</a> 
+<a class="jxr_linenumber" name="L177" href="#L177">177</a>             <em class="jxr_comment">// Uniform ("inverse method").</em>
+<a class="jxr_linenumber" name="L178" href="#L178">178</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> loUniform = -1.098;
+<a class="jxr_linenumber" name="L179" href="#L179">179</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> hiUniform = 0.76;
+<a class="jxr_linenumber" name="L180" href="#L180">180</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.UniformRealDistribution(loUniform, hiUniform),
+<a class="jxr_linenumber" name="L181" href="#L181">181</a>                 RandomSource.create(RandomSource.TWO_CMRES));
+<a class="jxr_linenumber" name="L182" href="#L182">182</a>             <em class="jxr_comment">// Uniform.</em>
+<a class="jxr_linenumber" name="L183" href="#L183">183</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.UniformRealDistribution(loUniform, hiUniform),
+<a class="jxr_linenumber" name="L184" href="#L184">184</a>                 <strong class="jxr_keyword">new</strong> ContinuousUniformSampler(RandomSource.create(RandomSource.MT_64), loUniform, hiUniform));
+<a class="jxr_linenumber" name="L185" href="#L185">185</a> 
+<a class="jxr_linenumber" name="L186" href="#L186">186</a>             <em class="jxr_comment">// Weibull ("inverse method").</em>
+<a class="jxr_linenumber" name="L187" href="#L187">187</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> alphaWeibull = 678.9;
+<a class="jxr_linenumber" name="L188" href="#L188">188</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> betaWeibull = 98.76;
+<a class="jxr_linenumber" name="L189" href="#L189">189</a>             add(LIST, <strong class="jxr_keyword">new</strong> org.apache.commons.math3.distribution.WeibullDistribution(alphaWeibull, betaWeibull),
+<a class="jxr_linenumber" name="L190" href="#L190">190</a>                 RandomSource.create(RandomSource.WELL_44497_B));
+<a class="jxr_linenumber" name="L191" href="#L191">191</a>         } <strong class="jxr_keyword">catch</strong> (Exception e) {
+<a class="jxr_linenumber" name="L192" href="#L192">192</a>             System.err.println(<span class="jxr_string">"Unexpected exception while creating the list of samplers: "</span> + e);
+<a class="jxr_linenumber" name="L193" href="#L193">193</a>             e.printStackTrace(System.err);
+<a class="jxr_linenumber" name="L194" href="#L194">194</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> RuntimeException(e);
+<a class="jxr_linenumber" name="L195" href="#L195">195</a>         }
+<a class="jxr_linenumber" name="L196" href="#L196">196</a>     }
+<a class="jxr_linenumber" name="L197" href="#L197">197</a> 
+<a class="jxr_linenumber" name="L198" href="#L198">198</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L199" href="#L199">199</a> <em class="jxr_javadoccomment">     * Class contains only static methods.</em>
+<a class="jxr_linenumber" name="L200" href="#L200">200</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L201" href="#L201">201</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSamplersList.html">ContinuousSamplersList</a>() {}
+<a class="jxr_linenumber" name="L202" href="#L202">202</a> 
+<a class="jxr_linenumber" name="L203" href="#L203">203</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L204" href="#L204">204</a> <em class="jxr_javadoccomment">     * @param list List of data (one the "parameters" tested by the Junit parametric test).</em>
+<a class="jxr_linenumber" name="L205" href="#L205">205</a> <em class="jxr_javadoccomment">     * @param dist Distribution to which the samples are supposed to conform.</em>
+<a class="jxr_linenumber" name="L206" href="#L206">206</a> <em class="jxr_javadoccomment">     * @param rng Generator of uniformly distributed sequences.</em>
+<a class="jxr_linenumber" name="L207" href="#L207">207</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L208" href="#L208">208</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> add(List&lt;ContinuousSamplerTestData[]&gt; list,
+<a class="jxr_linenumber" name="L209" href="#L209">209</a>                             <strong class="jxr_keyword">final</strong> org.apache.commons.math3.distribution.RealDistribution dist,
+<a class="jxr_linenumber" name="L210" href="#L210">210</a>                             UniformRandomProvider rng) {
+<a class="jxr_linenumber" name="L211" href="#L211">211</a>         <strong class="jxr_keyword">final</strong> ContinuousSampler inverseMethodSampler =
+<a class="jxr_linenumber" name="L212" href="#L212">212</a>             <strong class="jxr_keyword">new</strong> InverseTransformContinuousSampler(rng,
+<a class="jxr_linenumber" name="L213" href="#L213">213</a>                                                   <strong class="jxr_keyword">new</strong> ContinuousInverseCumulativeProbabilityFunction() {
+<a class="jxr_linenumber" name="L214" href="#L214">214</a>                                                       @Override
+<a class="jxr_linenumber" name="L215" href="#L215">215</a>                                                       <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">double</strong> inverseCumulativeProbability(<strong class="jxr_keyword">double</strong> p) {
+<a class="jxr_linenumber" name="L216" href="#L216">216</a>                                                           <strong class="jxr_keyword">return</strong> dist.inverseCumulativeProbability(p);
+<a class="jxr_linenumber" name="L217" href="#L217">217</a>                                                       }
+<a class="jxr_linenumber" name="L218" href="#L218">218</a>                                                       @Override
+<a class="jxr_linenumber" name="L219" href="#L219">219</a>                                                       <strong class="jxr_keyword">public</strong> String toString() {
+<a class="jxr_linenumber" name="L220" href="#L220">220</a>                                                           <strong class="jxr_keyword">return</strong> dist.toString();
+<a class="jxr_linenumber" name="L221" href="#L221">221</a>                                                       }
+<a class="jxr_linenumber" name="L222" href="#L222">222</a>                                                   });
+<a class="jxr_linenumber" name="L223" href="#L223">223</a>         list.add(<strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSamplerTestData.html">ContinuousSamplerTestData</a>[] { <strong class="jxr_keyword">new</strong> ContinuousSamplerTestData(inverseMethodSampler,
+<a class="jxr_linenumber" name="L224" href="#L224">224</a>                                                                                  getDeciles(dist)) });
+<a class="jxr_linenumber" name="L225" href="#L225">225</a>      }
+<a class="jxr_linenumber" name="L226" href="#L226">226</a> 
+<a class="jxr_linenumber" name="L227" href="#L227">227</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L228" href="#L228">228</a> <em class="jxr_javadoccomment">     * @param list List of data (one the "parameters" tested by the Junit parametric test).</em>
+<a class="jxr_linenumber" name="L229" href="#L229">229</a> <em class="jxr_javadoccomment">     * @param dist Distribution to which the samples are supposed to conform.</em>
+<a class="jxr_linenumber" name="L230" href="#L230">230</a> <em class="jxr_javadoccomment">     * @param sampler Sampler.</em>
+<a class="jxr_linenumber" name="L231" href="#L231">231</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L232" href="#L232">232</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> add(List&lt;ContinuousSamplerTestData[]&gt; list,
+<a class="jxr_linenumber" name="L233" href="#L233">233</a>                             <strong class="jxr_keyword">final</strong> org.apache.commons.math3.distribution.RealDistribution dist,
+<a class="jxr_linenumber" name="L234" href="#L234">234</a>                             <strong class="jxr_keyword">final</strong> ContinuousSampler sampler) {
+<a class="jxr_linenumber" name="L235" href="#L235">235</a>         list.add(<strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/rng/sampling/distribution/ContinuousSamplerTestData.html">ContinuousSamplerTestData</a>[] { <strong class="jxr_keyword">new</strong> ContinuousSamplerTestData(sampler,
+<a class="jxr_linenumber" name="L236" href="#L236">236</a>                                                                                  getDeciles(dist)) });
+<a class="jxr_linenumber" name="L237" href="#L237">237</a>     }
+<a class="jxr_linenumber" name="L238" href="#L238">238</a> 
+<a class="jxr_linenumber" name="L239" href="#L239">239</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L240" href="#L240">240</a> <em class="jxr_javadoccomment">     * Subclasses that are "parametric" tests can forward the call to</em>
+<a class="jxr_linenumber" name="L241" href="#L241">241</a> <em class="jxr_javadoccomment">     * the "@Parameters"-annotated method to this method.</em>
+<a class="jxr_linenumber" name="L242" href="#L242">242</a> <em class="jxr_javadoccomment">     *</em>
+<a class="jxr_linenumber" name="L243" href="#L243">243</a> <em class="jxr_javadoccomment">     * @return the list of all generators.</em>
+<a class="jxr_linenumber" name="L244" href="#L244">244</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L245" href="#L245">245</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> Iterable&lt;ContinuousSamplerTestData[]&gt; list() {
+<a class="jxr_linenumber" name="L246" href="#L246">246</a>         <strong class="jxr_keyword">return</strong> Collections.unmodifiableList(LIST);
+<a class="jxr_linenumber" name="L247" href="#L247">247</a>     }
+<a class="jxr_linenumber" name="L248" href="#L248">248</a> 
+<a class="jxr_linenumber" name="L249" href="#L249">249</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L250" href="#L250">250</a> <em class="jxr_javadoccomment">     * @param dist Distribution.</em>
+<a class="jxr_linenumber" name="L251" href="#L251">251</a> <em class="jxr_javadoccomment">     * @return the deciles of the given distribution. </em>
+<a class="jxr_linenumber" name="L252" href="#L252">252</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L253" href="#L253">253</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">double</strong>[] getDeciles(org.apache.commons.math3.distribution.RealDistribution dist) {
+<a class="jxr_linenumber" name="L254" href="#L254">254</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> last = 9;
+<a class="jxr_linenumber" name="L255" href="#L255">255</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong>[] deciles = <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">double</strong>[last];
+<a class="jxr_linenumber" name="L256" href="#L256">256</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">double</strong> ten = 10;
+<a class="jxr_linenumber" name="L257" href="#L257">257</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; last; i++) {
+<a class="jxr_linenumber" name="L258" href="#L258">258</a>             deciles[i] = dist.inverseCumulativeProbability((i + 1) / ten);
+<a class="jxr_linenumber" name="L259" href="#L259">259</a>         }
+<a class="jxr_linenumber" name="L260" href="#L260">260</a>         <strong class="jxr_keyword">return</strong> deciles;
+<a class="jxr_linenumber" name="L261" href="#L261">261</a>     }
+<a class="jxr_linenumber" name="L262" href="#L262">262</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/DiscreteSamplerParametricTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/DiscreteSamplerParametricTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/DiscreteSamplerParametricTest.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-test/org/apache/commons/rng/sampling/distribution/DiscreteSamplerTestData.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/DiscreteSamplerTestData.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/DiscreteSamplerTestData.html Thu Apr 20 11:33:45 2017
@@ -66,6 +66,6 @@
 <a class="jxr_linenumber" name="L58" href="#L58">58</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/DiscreteSamplersList.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/DiscreteSamplersList.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/DiscreteSamplersList.html Thu Apr 20 11:33:45 2017
@@ -221,6 +221,6 @@
 <a class="jxr_linenumber" name="L213" href="#L213">213</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/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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>

Modified: websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/distribution/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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>
@@ -88,7 +88,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-test/org/apache/commons/rng/sampling/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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-test/org/apache/commons/rng/sampling/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/sampling/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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-test/org/apache/commons/rng/simple/JDKRandomBridgeTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/JDKRandomBridgeTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/JDKRandomBridgeTest.html Thu Apr 20 11:33:45 2017
@@ -129,6 +129,6 @@
 <a class="jxr_linenumber" name="L121" href="#L121">121</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/simple/ProvidersCommonParametricTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/ProvidersCommonParametricTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/ProvidersCommonParametricTest.html Thu Apr 20 11:33:45 2017
@@ -365,6 +365,6 @@
 <a class="jxr_linenumber" name="L357" href="#L357">357</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/simple/ProvidersList.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/ProvidersList.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/ProvidersList.html Thu Apr 20 11:33:45 2017
@@ -167,6 +167,6 @@
 <a class="jxr_linenumber" name="L159" href="#L159">159</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/simple/RandomAssert.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/RandomAssert.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/RandomAssert.html Thu Apr 20 11:33:45 2017
@@ -89,6 +89,6 @@
 <a class="jxr_linenumber" name="L81" href="#L81">81</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/simple/RandomSourceTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/RandomSourceTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/RandomSourceTest.html Thu Apr 20 11:33:45 2017
@@ -77,6 +77,6 @@
 <a class="jxr_linenumber" name="L69" href="#L69">69</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/simple/internal/ByteArray2IntArrayTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/ByteArray2IntArrayTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/ByteArray2IntArrayTest.html Thu Apr 20 11:33:45 2017
@@ -51,6 +51,6 @@
 <a class="jxr_linenumber" name="L43" href="#L43">43</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/simple/internal/ByteArray2LongArrayTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/ByteArray2LongArrayTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/ByteArray2LongArrayTest.html Thu Apr 20 11:33:45 2017
@@ -51,6 +51,6 @@
 <a class="jxr_linenumber" name="L43" href="#L43">43</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/simple/internal/IntArray2LongArrayTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/IntArray2LongArrayTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/IntArray2LongArrayTest.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-test/org/apache/commons/rng/simple/internal/SeedFactoryTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/SeedFactoryTest.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/SeedFactoryTest.html Thu Apr 20 11:33:45 2017
@@ -121,6 +121,6 @@
 <a class="jxr_linenumber" name="L113" href="#L113">113</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/simple/internal/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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-test/org/apache/commons/rng/simple/internal/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/internal/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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>
@@ -78,7 +78,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-test/org/apache/commons/rng/simple/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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-test/org/apache/commons/rng/simple/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/org/apache/commons/rng/simple/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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>
@@ -88,7 +88,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-test/overview-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/overview-frame.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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>

Modified: websites/production/commons/content/proper/commons-rng/xref-test/overview-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/xref-test/overview-summary.html (original)
+++ websites/production/commons/content/proper/commons-rng/xref-test/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>
@@ -95,7 +95,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