http://git-wip-us.apache.org/repos/asf/commons-rng/blob/d1b3113a/commons-rng-core/site-content/.svn/pristine/12/12fd36224cd99fc0d93b3b0ddb96fecf662c0f0c.svn-base ---------------------------------------------------------------------- diff --git a/commons-rng-core/site-content/.svn/pristine/12/12fd36224cd99fc0d93b3b0ddb96fecf662c0f0c.svn-base b/commons-rng-core/site-content/.svn/pristine/12/12fd36224cd99fc0d93b3b0ddb96fecf662c0f0c.svn-base new file mode 100644 index 0000000..301ffc4 --- /dev/null +++ b/commons-rng-core/site-content/.svn/pristine/12/12fd36224cd99fc0d93b3b0ddb96fecf662c0f0c.svn-base @@ -0,0 +1,51 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" /> +<title>IntArray2LongArray xref</title> +<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" /> +</head> +<body> +<div id="overview"><a href="../../../../../../../apidocs/org/apache/commons/rng/internal/util/IntArray2LongArray.html">View Javadoc</a></div><pre> +<a class="jxr_linenumber" name="L1" href="#L1">1</a> <em class="jxr_comment">/*</em> +<a class="jxr_linenumber" name="L2" href="#L2">2</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</em> +<a class="jxr_linenumber" name="L3" href="#L3">3</a> <em class="jxr_comment"> * contributor license agreements. See the NOTICE file distributed with</em> +<a class="jxr_linenumber" name="L4" href="#L4">4</a> <em class="jxr_comment"> * this work for additional information regarding copyright ownership.</em> +<a class="jxr_linenumber" name="L5" href="#L5">5</a> <em class="jxr_comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</em> +<a class="jxr_linenumber" name="L6" href="#L6">6</a> <em class="jxr_comment"> * (the "License"); you may not use this file except in compliance with</em> +<a class="jxr_linenumber" name="L7" href="#L7">7</a> <em class="jxr_comment"> * the License. You may obtain a copy of the License at</em> +<a class="jxr_linenumber" name="L8" href="#L8">8</a> <em class="jxr_comment"> *</em> +<a class="jxr_linenumber" name="L9" href="#L9">9</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em> +<a class="jxr_linenumber" name="L10" href="#L10">10</a> <em class="jxr_comment"> *</em> +<a class="jxr_linenumber" name="L11" href="#L11">11</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing, software</em> +<a class="jxr_linenumber" name="L12" href="#L12">12</a> <em class="jxr_comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> +<a class="jxr_linenumber" name="L13" href="#L13">13</a> <em class="jxr_comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> +<a class="jxr_linenumber" name="L14" href="#L14">14</a> <em class="jxr_comment"> * See the License for the specific language governing permissions and</em> +<a class="jxr_linenumber" name="L15" href="#L15">15</a> <em class="jxr_comment"> * limitations under the License.</em> +<a class="jxr_linenumber" name="L16" href="#L16">16</a> <em class="jxr_comment"> */</em> +<a class="jxr_linenumber" name="L17" href="#L17">17</a> <strong class="jxr_keyword">package</strong> org.apache.commons.rng.internal.util; +<a class="jxr_linenumber" name="L18" href="#L18">18</a> +<a class="jxr_linenumber" name="L19" href="#L19">19</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L20" href="#L20">20</a> <em class="jxr_javadoccomment"> * Creates a {@code long[]} from an {@code int[]}.</em> +<a class="jxr_linenumber" name="L21" href="#L21">21</a> <em class="jxr_javadoccomment"> *</em> +<a class="jxr_linenumber" name="L22" href="#L22">22</a> <em class="jxr_javadoccomment"> * @since 1.0</em> +<a class="jxr_linenumber" name="L23" href="#L23">23</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L24" href="#L24">24</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/rng/internal/util/IntArray2LongArray.html">IntArray2LongArray</a> <strong class="jxr_keyword">implements</strong> SeedConverter<<strong class="jxr_keyword">int</strong>[], <strong class="jxr_keyword">long</strong>[]> { +<a class="jxr_linenumber" name="L25" href="#L25">25</a> <em class="jxr_javadoccomment">/** {@inheritDoc} */</em> +<a class="jxr_linenumber" name="L26" href="#L26">26</a> @Override +<a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong>[] convert(<strong class="jxr_keyword">int</strong>[] seed) { +<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> outSize = (seed.length + 1) / 2; +<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong>[] out = <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">long</strong>[outSize]; +<a class="jxr_linenumber" name="L30" href="#L30">30</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < outSize; i++) { +<a class="jxr_linenumber" name="L31" href="#L31">31</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> lo = seed[i]; +<a class="jxr_linenumber" name="L32" href="#L32">32</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> hi = outSize + i < seed.length ? seed[outSize + i] : 0; +<a class="jxr_linenumber" name="L33" href="#L33">33</a> out[i] = NumberFactory.makeLong(hi, lo); +<a class="jxr_linenumber" name="L34" href="#L34">34</a> } +<a class="jxr_linenumber" name="L35" href="#L35">35</a> +<a class="jxr_linenumber" name="L36" href="#L36">36</a> <strong class="jxr_keyword">return</strong> out; +<a class="jxr_linenumber" name="L37" href="#L37">37</a> } +<a class="jxr_linenumber" name="L38" href="#L38">38</a> } +</pre> +<hr/> +<div id="footer">Copyright © 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +</body> +</html> \ No newline at end of file
http://git-wip-us.apache.org/repos/asf/commons-rng/blob/d1b3113a/commons-rng-core/site-content/.svn/pristine/13/13423125625439aed534f955b800848fd8951f26.svn-base ---------------------------------------------------------------------- diff --git a/commons-rng-core/site-content/.svn/pristine/13/13423125625439aed534f955b800848fd8951f26.svn-base b/commons-rng-core/site-content/.svn/pristine/13/13423125625439aed534f955b800848fd8951f26.svn-base new file mode 100644 index 0000000..a12755f --- /dev/null +++ b/commons-rng-core/site-content/.svn/pristine/13/13423125625439aed534f955b800848fd8951f26.svn-base @@ -0,0 +1,17 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ----------------------------------------------------------------------------- +# +# Empty file used to automatically trigger JaCoCo profile from commons parent pom http://git-wip-us.apache.org/repos/asf/commons-rng/blob/d1b3113a/commons-rng-core/site-content/.svn/pristine/13/135e6583dd202baf7ab4f69d2392a67fcd66d426.svn-base ---------------------------------------------------------------------- diff --git a/commons-rng-core/site-content/.svn/pristine/13/135e6583dd202baf7ab4f69d2392a67fcd66d426.svn-base b/commons-rng-core/site-content/.svn/pristine/13/135e6583dd202baf7ab4f69d2392a67fcd66d426.svn-base new file mode 100644 index 0000000..979207e --- /dev/null +++ b/commons-rng-core/site-content/.svn/pristine/13/135e6583dd202baf7ab4f69d2392a67fcd66d426.svn-base @@ -0,0 +1,1069 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc --> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>RandomSource (Apache Commons Rng 1.0-SNAPSHOT API)</title> +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> +<script type="text/javascript" src="../../../../script.js"></script> +</head> +<body> +<script type="text/javascript"><!-- + try { + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="RandomSource (Apache Commons Rng 1.0-SNAPSHOT API)"; + } + } + catch(err) { + } +//--> +var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":10,"i7":9,"i8":9,"i9":9,"i10":9}; +var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; +var altColor = "altColor"; +var rowColor = "rowColor"; +var tableTab = "tableTab"; +var activeTableTab = "activeTableTab"; +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar.top"> +<!-- --> +</a> +<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> +<a name="navbar.top.firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/RandomSource.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../index-all.html">Index</a></li> +<li><a href="../../../../help-doc.html">Help</a></li> +</ul> +<div class="aboutLanguage"><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></div> +</div> +<div class="subNav"> +<ul class="navList"> +<li>Prev Class</li> +<li><a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng"><span class="typeNameLink">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../index.html?org/apache/commons/rng/RandomSource.html" target="_top">Frames</a></li> +<li><a href="RandomSource.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li><a href="#nested.class.summary">Nested</a> | </li> +<li><a href="#enum.constant.summary">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method.summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li><a href="#enum.constant.detail">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method.detail">Method</a></li> +</ul> +</div> +<a name="skip.navbar.top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">org.apache.commons.rng</div> +<h2 title="Enum RandomSource" class="title">Enum RandomSource</h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a><<a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a>></li> +<li> +<ul class="inheritance"> +<li>org.apache.commons.rng.RandomSource</li> +</ul> +</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>All Implemented Interfaces:</dt> +<dd><a href="http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a>></dd> +</dl> +<hr> +<br> +<pre>public enum <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.166">RandomSource</a> +extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a><<a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a>></pre> +<div class="block">This class provides the API for creating generators of random numbers. + <p> + Usage examples: + <pre><code> + UniformRandomProvider rng = RandomSource.create(RandomSource.MT); + </code></pre> + or + <pre><code> + final int[] seed = new int[] { 196, 9, 0, 226 }; + UniformRandomProvider rng = RandomSource.create(RandomSource.MT, seed); + </code></pre> + or + <pre><code> + final int[] seed = RandomSource.createIntArray(256); + UniformRandomProvider rng = RandomSource.create(RandomSource.MT, seed); + </code></pre> + where the first argument to method <code>create</code> is the identifier + of the generator's concrete implementation, and the second the is the + (optional) seed. + <br> + In the first form, a random seed will be <a href="../../../../org/apache/commons/rng/internal/util/SeedFactory.html" title="class in org.apache.commons.rng.internal.util"><code>generated + automatically</code></a>; in the second form, a fixed seed is used; a random seed + is explicitly generated in the third form. + </p> + + <p> + Seeding is the procedure by which a value (or set of values) is + used to <i>initialize</i> a generator instance. + The requirement that a given seed will always result in the same + internal state allows to create different instances of a generator + that will produce the same sequence of pseudo-random numbers. + </p> + + <p> + The type of data used as a seed depends on the concrete implementation + as some types may not provide enough information to fully initialize + the generator's internal state. + <br> + The reference algorithm's seeding procedure (if provided) operates + on a value of a (single) <i>native</i> type: + Each concrete implementation's constructor creates an instance using + the native type whose information contents is used to set the + internal state. + <br> + When the seed value passed by the caller is of the native type, it is + expected that the sequences produced will be identical to those + produced by other implementations of the same reference algorithm. + <br> + However, when the seed value passed by the caller is not of the native + type, a transformation is performed by this library and the resulting + native type value will <i>not</i> contain more information than the + original seed value. + If the algorithm's native type is "simpler" than the type passed by + the caller, then some (unused) information will even be lost. + <br> + The transformation from non-native to native seed type is arbitrary, + as long as it does not reduce the amount of information required by + the algorithm to initialize its state. + The consequence of the transformation is that sequences produced + by this library may <i>not</i> be the same as the sequences produced + by other implementations of the same algorithm! + </p> + + <p> + For each algorithm, the Javadoc mentions the "ideal" size of the seed, + meaning the number of <code>int</code> or <code>long</code> values that is neither + too large (i.e. some of the seed is useless) or too small (i.e. an + internal procedure will fill the state with redundant information + computed from the given seed). + </p> + + <p> + Note that some algorithms are inherently sensitive to having too low + diversity in their initial state. + For example, it is often a bad idea to use a seed that is mostly + composed of zeroes, or of repeated values. + </p> + + <p> + This class provides methods to generate random seeds (single values + or arrays of values, of <code>int</code> or <code>long</code> types) that can + be passed to the <a href="../../../../org/apache/commons/rng/RandomSource.html#create-org.apache.commons.rng.RandomSource-java.lang.Object-java.lang.Object...-"><code>generators factory method</code></a>. + <br> + Although the seed-generating methods defined in this class will likely + return different values each time they are called, there is no guarantee: + <ul> + <li> + In any sub-sequence, it is <a href="https://en.wikipedia.org/wiki/Birthday_problem"> + expected</a> that the same numbers can occur, with a probability getting + higher as the range of allowed values is smaller and the sequence becomes + longer. + </li> + <li> + It possible that the resulting "seed" will not be <i>good</i> (i.e. + it will not generate a sufficiently uniformly random sequence for the + intended purpose), even if the generator is good! + The only way to ensure that the selected seed will make the generator + produce a good sequence is to submit that sequence to a series of + stringent tests, as provided by tools such as + <a href="http://www.phy.duke.edu/~rgb/General/dieharder.php">dieharder</a> + or <a href="http://simul.iro.umontreal.ca/testu01/tu01.html">TestU01</a>. + </li> + </ul> + </p> + + <p> + The current implementations have no provision for producing non-overlapping + sequences. + For parallel applications, a possible workaround is that each thread uses + a generator of a different type (see <a href="../../../../org/apache/commons/rng/RandomSource.html#TWO_CMRES_SELECT"><code>TWO_CMRES_SELECT</code></a>). + </p> + + <p> + <b>Note:</b> + Seeding is not equivalent to restoring the internal state of an + <i>already initialized</i> generator. + Indeed, generators can have a state that is more complex than the + seed, and seeding is thus a transformation (from seed to state). + Implementations do not provide the inverse transformation (from + state to seed), hence it is not generally possible to know the seed + that would initialize a new generator instance to the current state + of another instance. + Reseeding is also inefficient if the purpose is to continue the + same sequence where another instance left off, as it would require + to "replay" all the calls performed by that other instance (and it + would require to know the number of calls to the primary source of + randomness, which is also not usually accessible). + <br> + This factory thus provides a method for + <a href="../../../../org/apache/commons/rng/RandomSource.html#saveState-org.apache.commons.rng.UniformRandomProvider-"><code>saving</code></a> the internal + state of a generator. + The state is wrapped in an <a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng"><code>"opaque object"</code></a> to be + used for <a href="../../../../org/apache/commons/rng/RandomSource.html#restoreState-org.apache.commons.rng.UniformRandomProvider-org.apache.commons.rng.RandomSource.State-"><code>restoring</code></a> + a generator (of the same type) to an identical state (e.g. to allow + persistent storage, or to continue a sequence from where the original + instance left off). + </p></div> +<dl> +<dt><span class="simpleTagLabel">Since:</span></dt> +<dd>1.0</dd> +</dl> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ======== NESTED CLASS SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="nested.class.summary"> +<!-- --> +</a> +<h3>Nested Class Summary</h3> +<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation"> +<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Class and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static class </code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng">RandomSource.State</a></span></code> +<div class="block">Wraps the internal state of a <a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng"><code>UniformRandomProvider</code></a>.</div> +</td> +</tr> +</table> +</li> +</ul> +<!-- =========== ENUM CONSTANT SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="enum.constant.summary"> +<!-- --> +</a> +<h3>Enum Constant Summary</h3> +<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation"> +<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Enum Constant and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#ISAAC">ISAAC</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/ISAACRandom.html" title="class in org.apache.commons.rng.internal.source32"><code>ISAACRandom</code></a>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#JDK">JDK</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/JDKRandom.html" title="class in org.apache.commons.rng.internal.source32"><code>JDKRandom</code></a>.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#KISS">KISS</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/KISSRandom.html" title="class in org.apache.commons.rng.internal.source32"><code>KISSRandom</code></a>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#MT">MT</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/MersenneTwister.html" title="class in org.apache.commons.rng.internal.source32"><code>MersenneTwister</code></a>.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#MT_64">MT_64</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/MersenneTwister64.html" title="class in org.apache.commons.rng.internal.source64"><code>MersenneTwister64</code></a>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#MWC_256">MWC_256</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/MultiplyWithCarry256.html" title="class in org.apache.commons.rng.internal.source32"><code>MultiplyWithCarry256</code></a>.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#SPLIT_MIX_64">SPLIT_MIX_64</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/SplitMix64.html" title="class in org.apache.commons.rng.internal.source64"><code>SplitMix64</code></a>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#TWO_CMRES">TWO_CMRES</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/TwoCmres.html" title="class in org.apache.commons.rng.internal.source64"><code>TwoCmres</code></a>.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#TWO_CMRES_SELECT">TWO_CMRES_SELECT</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/TwoCmres.html" title="class in org.apache.commons.rng.internal.source64"><code>TwoCmres</code></a>, + with explicit selection of the two subcycle generators.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#WELL_1024_A">WELL_1024_A</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well1024a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well1024a</code></a>.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#WELL_19937_A">WELL_19937_A</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well19937a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well19937a</code></a>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#WELL_19937_C">WELL_19937_C</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well19937c.html" title="class in org.apache.commons.rng.internal.source32"><code>Well19937c</code></a>.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#WELL_44497_A">WELL_44497_A</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well44497a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well44497a</code></a>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#WELL_44497_B">WELL_44497_B</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well44497b.html" title="class in org.apache.commons.rng.internal.source32"><code>Well44497b</code></a>.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#WELL_512_A">WELL_512_A</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well512a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well512a</code></a>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#XOR_SHIFT_1024_S">XOR_SHIFT_1024_S</a></span></code> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/XorShift1024Star.html" title="class in org.apache.commons.rng.internal.source64"><code>XorShift1024Star</code></a>.</div> +</td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method.summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr id="i0" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#create-org.apache.commons.rng.RandomSource-">create</a></span>(<a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> source)</code> +<div class="block">Creates a random number generator with a random seed.</div> +</td> +</tr> +<tr id="i1" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#create-org.apache.commons.rng.RandomSource-java.lang.Object-java.lang.Object...-">create</a></span>(<a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> source, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> seed, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>... data)</code> +<div class="block">Creates a random number generator with the given <code>seed</code>.</div> +</td> +</tr> +<tr id="i2" class="altColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#createInt--">createInt</a></span>()</code> +<div class="block">Creates a number for use as a seed.</div> +</td> +</tr> +<tr id="i3" class="rowColor"> +<td class="colFirst"><code>static int[]</code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#createIntArray-int-">createIntArray</a></span>(int n)</code> +<div class="block">Creates an array of numbers for use as a seed.</div> +</td> +</tr> +<tr id="i4" class="altColor"> +<td class="colFirst"><code>static long</code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#createLong--">createLong</a></span>()</code> +<div class="block">Creates a number for use as a seed.</div> +</td> +</tr> +<tr id="i5" class="rowColor"> +<td class="colFirst"><code>static long[]</code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#createLongArray-int-">createLongArray</a></span>(int n)</code> +<div class="block">Creates an array of numbers for use as a seed.</div> +</td> +</tr> +<tr id="i6" class="altColor"> +<td class="colFirst"><code>boolean</code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#isNativeSeed-java.lang.Object-">isNativeSeed</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> seed)</code> +<div class="block">Checks whether the type of given <code>seed</code> is the native type + of the implementation.</div> +</td> +</tr> +<tr id="i7" class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#restoreState-org.apache.commons.rng.UniformRandomProvider-org.apache.commons.rng.RandomSource.State-">restoreState</a></span>(<a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a> provider, + <a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng">RandomSource.State</a> state)</code> +<div class="block">Restores the state of a RNG.</div> +</td> +</tr> +<tr id="i8" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng">RandomSource.State</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#saveState-org.apache.commons.rng.UniformRandomProvider-">saveState</a></span>(<a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a> provider)</code> +<div class="block">Saves the state of a RNG.</div> +</td> +</tr> +<tr id="i9" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code> +<div class="block">Returns the enum constant of this type with the specified name.</div> +</td> +</tr> +<tr id="i10" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a>[]</code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/rng/RandomSource.html#values--">values</a></span>()</code> +<div class="block">Returns an array containing the constants of this enum type, in +the order they are declared.</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a></h3> +<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-" title="class or interface in java.lang">compareTo</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass--" title="class or interface in java.lang">getDeclaringClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/7/docs/ api/java/lang/Enum.html?is-external=true#name--" title="class or interface in java.lang">name</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#ordinal--" title="class or interface in java.lang">ordinal</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#valueOf-java.lang.Class-java.lang.String-" title="class or interface in java.lang">valueOf</a></code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ============ ENUM CONSTANT DETAIL =========== --> +<ul class="blockList"> +<li class="blockList"><a name="enum.constant.detail"> +<!-- --> +</a> +<h3>Enum Constant Detail</h3> +<a name="JDK"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>JDK</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.174">JDK</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/JDKRandom.html" title="class in org.apache.commons.rng.internal.source32"><code>JDKRandom</code></a>. + <ul> + <li>Native seed type: <code>Long</code>.</li> + <li>Native seed size: 1.</li> + </ul></div> +</li> +</ul> +<a name="WELL_512_A"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>WELL_512_A</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.182">WELL_512_A</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well512a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well512a</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 16.</li> + </ul></div> +</li> +</ul> +<a name="WELL_1024_A"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>WELL_1024_A</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.190">WELL_1024_A</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well1024a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well1024a</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 32.</li> + </ul></div> +</li> +</ul> +<a name="WELL_19937_A"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>WELL_19937_A</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.198">WELL_19937_A</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well19937a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well19937a</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 624.</li> + </ul></div> +</li> +</ul> +<a name="WELL_19937_C"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>WELL_19937_C</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.206">WELL_19937_C</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well19937c.html" title="class in org.apache.commons.rng.internal.source32"><code>Well19937c</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 624.</li> + </ul></div> +</li> +</ul> +<a name="WELL_44497_A"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>WELL_44497_A</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.214">WELL_44497_A</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well44497a.html" title="class in org.apache.commons.rng.internal.source32"><code>Well44497a</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 1391.</li> + </ul></div> +</li> +</ul> +<a name="WELL_44497_B"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>WELL_44497_B</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.222">WELL_44497_B</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/Well44497b.html" title="class in org.apache.commons.rng.internal.source32"><code>Well44497b</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 1391.</li> + </ul></div> +</li> +</ul> +<a name="MT"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>MT</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.230">MT</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/MersenneTwister.html" title="class in org.apache.commons.rng.internal.source32"><code>MersenneTwister</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 624.</li> + </ul></div> +</li> +</ul> +<a name="ISAAC"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>ISAAC</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.238">ISAAC</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/ISAACRandom.html" title="class in org.apache.commons.rng.internal.source32"><code>ISAACRandom</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 256.</li> + </ul></div> +</li> +</ul> +<a name="SPLIT_MIX_64"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>SPLIT_MIX_64</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.246">SPLIT_MIX_64</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/SplitMix64.html" title="class in org.apache.commons.rng.internal.source64"><code>SplitMix64</code></a>. + <ul> + <li>Native seed type: <code>Long</code>.</li> + <li>Native seed size: 1.</li> + </ul></div> +</li> +</ul> +<a name="XOR_SHIFT_1024_S"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>XOR_SHIFT_1024_S</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.254">XOR_SHIFT_1024_S</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/XorShift1024Star.html" title="class in org.apache.commons.rng.internal.source64"><code>XorShift1024Star</code></a>. + <ul> + <li>Native seed type: <code>long[]</code>.</li> + <li>Native seed size: 16.</li> + </ul></div> +</li> +</ul> +<a name="TWO_CMRES"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>TWO_CMRES</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.264">TWO_CMRES</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/TwoCmres.html" title="class in org.apache.commons.rng.internal.source64"><code>TwoCmres</code></a>. + This generator is equivalent to <a href="../../../../org/apache/commons/rng/RandomSource.html#TWO_CMRES_SELECT"><code>TWO_CMRES_SELECT</code></a> with the choice of the + pair <code>(0, 1)</code> for the two subcycle generators. + <ul> + <li>Native seed type: <code>Integer</code>.</li> + <li>Native seed size: 1.</li> + </ul></div> +</li> +</ul> +<a name="TWO_CMRES_SELECT"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>TWO_CMRES_SELECT</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.277">TWO_CMRES_SELECT</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/TwoCmres.html" title="class in org.apache.commons.rng.internal.source64"><code>TwoCmres</code></a>, + with explicit selection of the two subcycle generators. + The selection of the subcycle generator is by passing its index in the internal + table, a value between 0 (included) and 13 (included). + The two indices must be different. + Different choices of an ordered pair of indices create independent generators. + <ul> + <li>Native seed type: <code>Integer</code>.</li> + <li>Native seed size: 1.</li> + </ul></div> +</li> +</ul> +<a name="MT_64"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>MT_64</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.285">MT_64</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source64/MersenneTwister64.html" title="class in org.apache.commons.rng.internal.source64"><code>MersenneTwister64</code></a>. + <ul> + <li>Native seed type: <code>long[]</code>.</li> + <li>Native seed size: 312.</li> + </ul></div> +</li> +</ul> +<a name="MWC_256"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>MWC_256</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.293">MWC_256</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/MultiplyWithCarry256.html" title="class in org.apache.commons.rng.internal.source32"><code>MultiplyWithCarry256</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 257.</li> + </ul></div> +</li> +</ul> +<a name="KISS"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>KISS</h4> +<pre>public static final <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.301">KISS</a></pre> +<div class="block">Source of randomness is <a href="../../../../org/apache/commons/rng/internal/source32/KISSRandom.html" title="class in org.apache.commons.rng.internal.source32"><code>KISSRandom</code></a>. + <ul> + <li>Native seed type: <code>int[]</code>.</li> + <li>Native seed size: 4.</li> + </ul></div> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method.detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="values--"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>values</h4> +<pre>public static <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a>[] <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.166">values</a>()</pre> +<div class="block">Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +<pre> +for (RandomSource c : RandomSource.values()) + System.out.println(c); +</pre></div> +<dl> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>an array containing the constants of this enum type, in the order they are declared</dd> +</dl> +</li> +</ul> +<a name="valueOf-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>valueOf</h4> +<pre>public static <a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.166">valueOf</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre> +<div class="block">Returns the enum constant of this type with the specified name. +The string must match <i>exactly</i> an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>name</code> - the name of the enum constant to be returned.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>the enum constant with the specified name</dd> +<dt><span class="throwsLabel">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd> +<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang">NullPointerException</a></code> - if the argument is null</dd> +</dl> +</li> +</ul> +<a name="isNativeSeed-java.lang.Object-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>isNativeSeed</h4> +<pre>public boolean <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.361">isNativeSeed</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> seed)</pre> +<div class="block">Checks whether the type of given <code>seed</code> is the native type + of the implementation.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>seed</code> - Seed value.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd><code>true</code> if the type of <code>seed</code> is the native + type for this RNG source.</dd> +</dl> +</li> +</ul> +<a name="create-org.apache.commons.rng.RandomSource-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>create</h4> +<pre>public static <a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.378">create</a>(<a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> source)</pre> +<div class="block">Creates a random number generator with a random seed. + + <p> + Example of usage: + <pre><code> + UniformRandomProvider rng = RandomSource.create(RandomSource.MT); + </code></pre> + </p></div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>source</code> - RNG type.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>the RNG.</dd> +</dl> +</li> +</ul> +<a name="create-org.apache.commons.rng.RandomSource-java.lang.Object-java.lang.Object...-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>create</h4> +<pre>public static <a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.435">create</a>(<a href="../../../../org/apache/commons/rng/RandomSource.html" title="enum in org.apache.commons.rng">RandomSource</a> source, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> seed, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>... data)</pre> +<div class="block">Creates a random number generator with the given <code>seed</code>. + + <p> + Example of usage: + <pre><code> + UniformRandomProvider rng = RandomSource.create(RandomSource.TWO_CMRES_SELECT, 26219, 6, 9); + </code></pre> + </p> + + <p> + Valid types for the <code>seed</code> are: + <ul> + <li><code>Integer</code> (or <code>int</code>)</li> + <li><code>Long</code> (or <code>long</code>)</li> + <li><code>int[]</code></li> + <li><code>long[]</code></li> + <li><code>byte[]</code></li> + </ul> + </p> + + <p> + Notes: + <ul> + <li> + When the seed type passed as argument is more complex (i.e. more + bits can be independently chosen) than the generator's + <a href="../../../../org/apache/commons/rng/RandomSource.html#isNativeSeed-java.lang.Object-"><code>native type</code></a>, the conversion of a + set of different seeds will necessarily result in the same value + of the native seed type. + </li> + <li> + When the native seed type is an array, the same remark applies + when the array contains more bits than the state of the generator. + </li> + <li> + When the native seed type is an array and the <code>seed</code> is + <code>null</code>, the size of the generated array will be 128. + </li> + </ul> + </p></div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>source</code> - RNG type.</dd> +<dd><code>seed</code> - Seed value. It can be <code>null</code> (in which case a + random value will be used).</dd> +<dd><code>data</code> - Additional arguments to the implementation's constructor. + Please refer to the documentation of each specific implementation.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>the RNG.</dd> +<dt><span class="throwsLabel">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang">UnsupportedOperationException</a></code> - if the type of the <code>seed</code> + is invalid.</dd> +<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang">IllegalStateException</a></code> - if data is missing to initialize the + generator implemented by the given <code>source</code>.</dd> +</dl> +</li> +</ul> +<a name="saveState-org.apache.commons.rng.UniformRandomProvider-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>saveState</h4> +<pre>public static <a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng">RandomSource.State</a> <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.452">saveState</a>(<a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a> provider)</pre> +<div class="block">Saves the state of a RNG.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>provider</code> - Provider.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>the current state of the given <code>provider</code>.</dd> +<dt><span class="throwsLabel">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang">UnsupportedOperationException</a></code> - if the <code>provider</code> is + not an object created by this factory or the underlying source of + randomness does not support this functionality.</dd> +<dt><span class="seeLabel">See Also:</span></dt> +<dd><a href="../../../../org/apache/commons/rng/RandomSource.html#restoreState-org.apache.commons.rng.UniformRandomProvider-org.apache.commons.rng.RandomSource.State-"><code>restoreState(UniformRandomProvider,State)</code></a></dd> +</dl> +</li> +</ul> +<a name="restoreState-org.apache.commons.rng.UniformRandomProvider-org.apache.commons.rng.RandomSource.State-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>restoreState</h4> +<pre>public static void <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.477">restoreState</a>(<a href="../../../../org/apache/commons/rng/UniformRandomProvider.html" title="interface in org.apache.commons.rng">UniformRandomProvider</a> provider, + <a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng">RandomSource.State</a> state)</pre> +<div class="block">Restores the state of a RNG.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>provider</code> - Provider.</dd> +<dd><code>state</code> - State which the <code>provider</code> will be set to. + This parameter must have been obtained by a call to + <a href="../../../../org/apache/commons/rng/RandomSource.html#saveState-org.apache.commons.rng.UniformRandomProvider-"><code>saveState(rng)</code></a> + where <code>rng</code> is either the same object as <code>provider</code>, + or an object of the exact same class.</dd> +<dt><span class="throwsLabel">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang">UnsupportedOperationException</a></code> - if the <code>provider</code> is + not an object created by this factory or the underlying source of + randomness does not support this functionality.</dd> +<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if it was detected that the + <code>state</code> is incompatible with the given <code>provider</code>.</dd> +<dt><span class="seeLabel">See Also:</span></dt> +<dd><a href="../../../../org/apache/commons/rng/RandomSource.html#saveState-org.apache.commons.rng.UniformRandomProvider-"><code>saveState(UniformRandomProvider)</code></a></dd> +</dl> +</li> +</ul> +<a name="createInt--"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>createInt</h4> +<pre>public static int <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.491">createInt</a>()</pre> +<div class="block">Creates a number for use as a seed.</div> +<dl> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>a random number.</dd> +</dl> +</li> +</ul> +<a name="createLong--"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>createLong</h4> +<pre>public static long <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.500">createLong</a>()</pre> +<div class="block">Creates a number for use as a seed.</div> +<dl> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>a random number.</dd> +</dl> +</li> +</ul> +<a name="createIntArray-int-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>createIntArray</h4> +<pre>public static int[] <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.510">createIntArray</a>(int n)</pre> +<div class="block">Creates an array of numbers for use as a seed.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>n</code> - Size of the array to create.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>an array of <code>n</code> random numbers.</dd> +</dl> +</li> +</ul> +<a name="createLongArray-int-"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>createLongArray</h4> +<pre>public static long[] <a href="../../../../src-html/org/apache/commons/rng/RandomSource.html#line.520">createLongArray</a>(int n)</pre> +<div class="block">Creates an array of numbers for use as a seed.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>n</code> - Size of the array to create.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>an array of <code>n</code> random numbers.</dd> +</dl> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar.bottom"> +<!-- --> +</a> +<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> +<a name="navbar.bottom.firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/RandomSource.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../index-all.html">Index</a></li> +<li><a href="../../../../help-doc.html">Help</a></li> +</ul> +<div class="aboutLanguage"><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></div> +</div> +<div class="subNav"> +<ul class="navList"> +<li>Prev Class</li> +<li><a href="../../../../org/apache/commons/rng/RandomSource.State.html" title="class in org.apache.commons.rng"><span class="typeNameLink">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../index.html?org/apache/commons/rng/RandomSource.html" target="_top">Frames</a></li> +<li><a href="RandomSource.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li><a href="#nested.class.summary">Nested</a> | </li> +<li><a href="#enum.constant.summary">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method.summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li><a href="#enum.constant.detail">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method.detail">Method</a></li> +</ul> +</div> +<a name="skip.navbar.bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> +</body> +</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/commons-rng/blob/d1b3113a/commons-rng-core/site-content/.svn/pristine/13/13797171964ffdd2c00c348d0b2f3dee5678d8b0.svn-base ---------------------------------------------------------------------- diff --git a/commons-rng-core/site-content/.svn/pristine/13/13797171964ffdd2c00c348d0b2f3dee5678d8b0.svn-base b/commons-rng-core/site-content/.svn/pristine/13/13797171964ffdd2c00c348d0b2f3dee5678d8b0.svn-base new file mode 100644 index 0000000..9545162 --- /dev/null +++ b/commons-rng-core/site-content/.svn/pristine/13/13797171964ffdd2c00c348d0b2f3dee5678d8b0.svn-base @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>ProviderBuilder</title><script type="text/javascript" src="../.resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Rng</a> > <a href="index.html" class="el_package">org.apache.commons.rng.internal</a> > <span class="el_class">ProviderBuilder</span></div><h1>ProviderBuilder</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td cla ss="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">41 of 392</td><td class="ctr2">90%</td><td class="bar">2 of 26</td><td class="ctr2">92%</td><td class="ctr1">3</td><td class="ctr2">19</td><td class="ctr1 ">11</td><td class="ctr2">79</td><td class="ctr1">1</td><td class="ctr2">6</td></tr></tfoot><tbody><tr><td id="a0"><a href="ProviderBuilder.java.html#L259" class="el_method">create(Constructor, Object[])</a></td><td class="bar" id="b0"><img src="../.resources/redbar.gif" width="12" height="10" title="21" alt="21"/><img src="../.resources/greenbar.gif" width="3" height="10" title="5" alt="5"/></td><td class="ctr2" id="c4">19%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h0">6</td><td class="ctr2" id="i2">7</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a3"><a href="ProviderBuilder.java.html#L186" class="el_method">createSeed(ProviderBuilder.RandomSourceInternal, Object)</a></td><td class="bar" id="b1"><img src="../.resources/redbar.gif" width="6" height="10" title="10" alt="10"/><img src="../.resources/greenbar.gif" width="73" height="10" title="120" alt="120"/></td><td class="ctr2" id="c2">92%</td><td class="bar" id="d0"><img src="../.resources/redbar.gif" width="10" height="10" title="2" alt="2"/><img src="../.resources/greenbar.gif" width="110" height="10" title="22" alt="22"/></td><td class="ctr2" id="e1">92%</td><td class="ctr1" id="f0">2</td><td class="ctr2" id="g0">13</td><td class="ctr1" id="h1">2</td><td class="ctr2" id="i1">26</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a2"><a href="ProviderBuilder.java.html#L241" class="el_method">createConstructor(ProviderBuilder.RandomSourceInternal)</a></td><td class="bar" id="b2"><img src="../.resources/redbar.gif" width="4" height="10" title="7" alt="7"/><img src="../.resources/greenbar.gif" width="3" height="10" title="6" alt="6"/></td><td class="ctr2" id="c3">46%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h2">2</td><td class="ctr2" id="i4 ">3</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a4"><a href="ProviderBuilder.java.html#L146" class="el_method">ProviderBuilder()</a></td><td class="bar" id="b3"><img src="../.resources/redbar.gif" width="1" height="10" title="3" alt="3"/></td><td class="ctr2" id="c5">0%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f1">1</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h3">1</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a5"><a href="ProviderBuilder.java.html#L71" class="el_method">static {...}</a></td><td class="bar" id="b4"><img src="../.resources/greenbar.gif" width="120" height="10" title="195" alt="195"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i0">36</td><td clas s="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a1"><a href="ProviderBuilder.java.html#L162" class="el_method">create(ProviderBuilder.RandomSourceInternal, Object, Object[])</a></td><td class="bar" id="b5"><img src="../.resources/greenbar.gif" width="15" height="10" title="25" alt="25"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"><img src="../.resources/greenbar.gif" width="10" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100%</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g1">2</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i3">6</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.5.201505241946</span></div></body></html> \ No newline at end of file
