Skip to content

Commit e2d4cd8

Browse files
committed
Update artifacts
1 parent 77cf4dc commit e2d4cd8

File tree

9 files changed

+77
-63
lines changed

9 files changed

+77
-63
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[200,390,51.2821,2,2,100,0,1,0,200,390,51.2821,"3de82aba142ef3b9c16cd615175031305fa02237","2025-04-30 22:59:09 -0700"]
22
[200,390,51.2821,2,2,100,0,1,0,200,390,51.2821,"58747abd76284c8096b73106b56cd580016d5701","2025-04-30 23:02:16 -0700"]
33
[200,390,51.2821,2,2,100,0,1,0,200,390,51.2821,"65f6a65b799c493d707c6eb2d55574e42f6a0649","2025-05-01 16:53:08 -0700"]
4+
[200,390,51.2821,2,2,100,0,1,0,200,390,51.2821,"99288f71645dbe3209e489e152c7775f86a3052a","2025-05-02 01:48:03 -0700"]

random/tools/unary-factory/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h1><a href="../../../../index.html">All files</a> random/tools/unary-factory/li
116116
<div class='footer quiet pad2 space-top1 center small'>
117117
Code coverage generated by
118118
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
119-
at 2025-05-01T23:54:25.130Z
119+
at 2025-05-02T08:50:19.187Z
120120
</div>
121121
<script src="../../../../prettify.js"></script>
122122
<script>

random/tools/unary-factory/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
254254
'use strict';
255255
&nbsp;
256256
/**
257-
* Create a function for generating pseudorandom numbers drawn from a single-parameter probability distribution.
257+
* Create a function for generating pseudorandom values drawn from a unary PRNG.
258258
*
259259
* @module @stdlib/random/tools/unary-factory
260260
*
@@ -325,7 +325,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
325325
<div class='footer quiet pad2 space-top1 center small'>
326326
Code coverage generated by
327327
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
328-
at 2025-05-01T23:54:25.130Z
328+
at 2025-05-02T08:50:19.187Z
329329
</div>
330330
<script src="../../../../prettify.js"></script>
331331
<script>

random/tools/unary-factory/main.js.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -717,10 +717,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
717717
// MAIN //
718718
&nbsp;
719719
/**
720-
* Returns a function for generating pseudorandom numbers drawn from a single-parameter probability distribution.
720+
* Returns a function for generating pseudorandom values drawn from a unary PRNG.
721721
*
722-
* @param {Function} prng - unary pseudorandom number generator
723-
* @param {Function} prng.factory - method which returns a new unary pseudorandom number generator
722+
* @param {Function} prng - unary pseudorandom value generator
723+
* @param {Function} prng.factory - method which returns a new unary pseudorandom value generator
724724
* @param {StringArray} idtypes - list of supported input data types
725725
* @param {StringArray} odtypes - list of supported output data types
726726
* @param {Object} policies - policies
@@ -827,14 +827,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
827827
<span class="cstat-no" title="statement not covered" > return factory;</span>
828828
<span class="cstat-no" title="statement not covered" ></span>
829829
<span class="cstat-no" title="statement not covered" > /**</span>
830-
<span class="cstat-no" title="statement not covered" > * Returns a function for generating pseudorandom numbers drawn from a single-parameter probability distribution.</span>
830+
<span class="cstat-no" title="statement not covered" > * Returns a function for generating pseudorandom values drawn from a unary PRNG.</span>
831831
<span class="cstat-no" title="statement not covered" > *</span>
832832
<span class="cstat-no" title="statement not covered" > * @private</span>
833833
<span class="cstat-no" title="statement not covered" > * @param {Options} [options] - function options</span>
834834
<span class="cstat-no" title="statement not covered" > * @param {PRNG} [options.prng] - pseudorandom number generator which generates uniformly distributed pseudorandom numbers</span>
835-
<span class="cstat-no" title="statement not covered" > * @param {*} [options.seed] - pseudorandom number generator seed</span>
836-
<span class="cstat-no" title="statement not covered" > * @param {*} [options.state] - pseudorandom number generator state</span>
837-
<span class="cstat-no" title="statement not covered" > * @param {boolean} [options.copy] - boolean indicating whether to copy a provided pseudorandom number generator state</span>
835+
<span class="cstat-no" title="statement not covered" > * @param {*} [options.seed] - pseudorandom value generator seed</span>
836+
<span class="cstat-no" title="statement not covered" > * @param {*} [options.state] - pseudorandom value generator state</span>
837+
<span class="cstat-no" title="statement not covered" > * @param {boolean} [options.copy] - boolean indicating whether to copy a provided pseudorandom value generator state</span>
838838
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} options argument must be an object</span>
839839
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid options</span>
840840
<span class="cstat-no" title="statement not covered" > * @throws {Error} must provide a valid state</span>
@@ -871,20 +871,20 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
871871
<span class="cstat-no" title="statement not covered" > return rand;</span>
872872
<span class="cstat-no" title="statement not covered" ></span>
873873
<span class="cstat-no" title="statement not covered" > /**</span>
874-
<span class="cstat-no" title="statement not covered" > * Returns an ndarray filled with pseudorandom numbers drawn from a single-parameter probability distribution.</span>
874+
<span class="cstat-no" title="statement not covered" > * Returns an ndarray filled with pseudorandom values drawn from a unary PRNG.</span>
875875
<span class="cstat-no" title="statement not covered" > *</span>
876876
<span class="cstat-no" title="statement not covered" > * @private</span>
877877
<span class="cstat-no" title="statement not covered" > * @param {NonNegativeIntegerArray} shape - output ndarray shape</span>
878-
<span class="cstat-no" title="statement not covered" > * @param {(number|ComplexLike|ndarrayLike)} param1 - distribution parameter</span>
878+
<span class="cstat-no" title="statement not covered" > * @param {(ndarrayLike|*)} param1 - PRNG parameter</span>
879879
<span class="cstat-no" title="statement not covered" > * @param {Options} [options] - function options</span>
880880
<span class="cstat-no" title="statement not covered" > * @param {string} [options.dtype] - output data type</span>
881881
<span class="cstat-no" title="statement not covered" > * @param {string} [options.order] - memory layout (either row-major or column-major)</span>
882882
<span class="cstat-no" title="statement not covered" > * @param {string} [options.mode] - specifies how to handle indices which exceed ndarray dimensions</span>
883883
<span class="cstat-no" title="statement not covered" > * @param {StringArray} [options.submode] - specifies how to handle subscripts which exceed ndarray dimensions on a per dimension basis</span>
884884
<span class="cstat-no" title="statement not covered" > * @param {boolean} [options.readonly] - boolean indicating whether an ndarray should be read-only</span>
885885
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must be a valid shape</span>
886-
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid distribution parameters</span>
887-
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} distribution parameters and the desired shape must be broadcast compatible</span>
886+
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid PRNG parameters</span>
887+
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} PRNG parameters and the desired shape must be broadcast compatible</span>
888888
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} options argument must be an object</span>
889889
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid options</span>
890890
<span class="cstat-no" title="statement not covered" > * @returns {ndarray} output array</span>
@@ -897,14 +897,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
897897
<span class="cstat-no" title="statement not covered" > }</span>
898898
<span class="cstat-no" title="statement not covered" ></span>
899899
<span class="cstat-no" title="statement not covered" > /**</span>
900-
<span class="cstat-no" title="statement not covered" > * Fills an ndarray with pseudorandom numbers drawn from a single-parameter probability distribution.</span>
900+
<span class="cstat-no" title="statement not covered" > * Fills an ndarray with pseudorandom values drawn from a unary PRNG.</span>
901901
<span class="cstat-no" title="statement not covered" > *</span>
902902
<span class="cstat-no" title="statement not covered" > * @private</span>
903-
<span class="cstat-no" title="statement not covered" > * @param {(number|ComplexLike|ndarrayLike)} param1 - distribution parameter</span>
903+
<span class="cstat-no" title="statement not covered" > * @param {(ndarrayLike|*)} param1 - PRNG parameter</span>
904904
<span class="cstat-no" title="statement not covered" > * @param {ndarrayLike} out - output ndarray</span>
905905
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} second argument must be an ndarray</span>
906-
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid distribution parameters</span>
907-
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} distribution parameters and the output ndarray must be broadcast compatible</span>
906+
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid PRNG parameters</span>
907+
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} PRNG parameters and the output ndarray must be broadcast compatible</span>
908908
<span class="cstat-no" title="statement not covered" > * @returns {ndarray} output ndarray</span>
909909
<span class="cstat-no" title="statement not covered" > */</span>
910910
<span class="cstat-no" title="statement not covered" > function assign( param1, out ) {</span>
@@ -952,7 +952,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
952952
<span class="cstat-no" title="statement not covered" > }</span>
953953
<span class="cstat-no" title="statement not covered" ></span>
954954
<span class="cstat-no" title="statement not covered" > /**</span>
955-
<span class="cstat-no" title="statement not covered" > * Returns the current pseudorandom number generator state.</span>
955+
<span class="cstat-no" title="statement not covered" > * Returns the current pseudorandom value generator state.</span>
956956
<span class="cstat-no" title="statement not covered" > *</span>
957957
<span class="cstat-no" title="statement not covered" > * @private</span>
958958
<span class="cstat-no" title="statement not covered" > * @returns {*} current state</span>
@@ -962,7 +962,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
962962
<span class="cstat-no" title="statement not covered" > }</span>
963963
<span class="cstat-no" title="statement not covered" ></span>
964964
<span class="cstat-no" title="statement not covered" > /**</span>
965-
<span class="cstat-no" title="statement not covered" > * Sets the pseudorandom number generator state.</span>
965+
<span class="cstat-no" title="statement not covered" > * Sets the pseudorandom value generator state.</span>
966966
<span class="cstat-no" title="statement not covered" > *</span>
967967
<span class="cstat-no" title="statement not covered" > * @private</span>
968968
<span class="cstat-no" title="statement not covered" > * @param {*} s - generator state</span>
@@ -985,7 +985,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
985985
<div class='footer quiet pad2 space-top1 center small'>
986986
Code coverage generated by
987987
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
988-
at 2025-05-01T23:54:25.130Z
988+
at 2025-05-02T08:50:19.187Z
989989
</div>
990990
<script src="../../../../prettify.js"></script>
991991
<script>

random/tools/unary/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[382,596,64.094,17,17,100,1,4,25,382,596,64.094,"3de82aba142ef3b9c16cd615175031305fa02237","2025-04-30 22:59:09 -0700"]
22
[382,596,64.094,17,17,100,1,4,25,382,596,64.094,"65f6a65b799c493d707c6eb2d55574e42f6a0649","2025-05-01 16:53:08 -0700"]
3+
[382,600,63.6667,17,17,100,1,4,25,382,600,63.6667,"99288f71645dbe3209e489e152c7775f86a3052a","2025-05-02 01:48:03 -0700"]

random/tools/unary/index.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> random/tools/unary/lib</h1>
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">64.09% </span>
26+
<span class="strong">63.66% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>382/596</span>
28+
<span class='fraction'>382/600</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> random/tools/unary/lib</h1>
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">64.09% </span>
47+
<span class="strong">63.66% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>382/596</span>
49+
<span class='fraction'>382/600</span>
5050
</div>
5151

5252

@@ -94,18 +94,18 @@ <h1><a href="../../../../index.html">All files</a> random/tools/unary/lib</h1>
9494
</tr>
9595

9696
<tr>
97-
<td class="file medium" data-value="main.js"><a href="main.js.html">main.js</a></td>
98-
<td data-value="50.23" class="pic medium">
99-
<div class="chart"><div class="cover-fill" style="width: 50%"></div><div class="cover-empty" style="width: 50%"></div></div>
97+
<td class="file low" data-value="main.js"><a href="main.js.html">main.js</a></td>
98+
<td data-value="49.76" class="pic low">
99+
<div class="chart"><div class="cover-fill" style="width: 49%"></div><div class="cover-empty" style="width: 51%"></div></div>
100100
</td>
101-
<td data-value="50.23" class="pct medium">50.23%</td>
102-
<td data-value="430" class="abs medium">216/430</td>
101+
<td data-value="49.76" class="pct low">49.76%</td>
102+
<td data-value="434" class="abs low">216/434</td>
103103
<td data-value="100" class="pct high">100%</td>
104104
<td data-value="1" class="abs high">1/1</td>
105105
<td data-value="0" class="pct low">0%</td>
106106
<td data-value="3" class="abs low">0/3</td>
107-
<td data-value="50.23" class="pct medium">50.23%</td>
108-
<td data-value="430" class="abs medium">216/430</td>
107+
<td data-value="49.76" class="pct low">49.76%</td>
108+
<td data-value="434" class="abs low">216/434</td>
109109
</tr>
110110

111111
<tr>
@@ -131,7 +131,7 @@ <h1><a href="../../../../index.html">All files</a> random/tools/unary/lib</h1>
131131
<div class='footer quiet pad2 space-top1 center small'>
132132
Code coverage generated by
133133
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
134-
at 2025-05-01T23:54:28.916Z
134+
at 2025-05-02T08:50:23.078Z
135135
</div>
136136
<script src="../../../../prettify.js"></script>
137137
<script>

random/tools/unary/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
242242
'use strict';
243243
&nbsp;
244244
/**
245-
* Constructor for creating ndarrays filled with pseudorandom numbers drawn from a single-parameter probability distribution.
245+
* Constructor for creating ndarrays filled with pseudorandom values drawn from a unary PRNG.
246246
*
247247
* @module @stdlib/random/tools/unary
248248
*
@@ -307,7 +307,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">random
307307
<div class='footer quiet pad2 space-top1 center small'>
308308
Code coverage generated by
309309
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
310-
at 2025-05-01T23:54:28.916Z
310+
at 2025-05-02T08:50:23.078Z
311311
</div>
312312
<script src="../../../../prettify.js"></script>
313313
<script>

0 commit comments

Comments
 (0)