Skip to content

Commit 0ff294d

Browse files
committed
Update artifacts
1 parent 11f2703 commit 0ff294d

File tree

5 files changed

+28
-25
lines changed

5 files changed

+28
-25
lines changed

complex/float64/base/assert/is-almost-equal-value/coverage.ndjson

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[116,116,100,4,4,100,1,1,100,116,116,100,"d56924cdb37613f6acedbe57c5f2220264af4599","2025-07-11 14:28:50 +0530"]

complex/float64/base/assert/is-almost-equal-value/index.html renamed to complex/float64/base/assert/is-almost-equal/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44

55
<head>
6-
<title>Code coverage report for complex/float64/base/assert/is-almost-equal-value/lib</title>
6+
<title>Code coverage report for complex/float64/base/assert/is-almost-equal/lib</title>
77
<meta charset="utf-8" />
88
<link rel="stylesheet" href="../../../../../../prettify.css" />
99
<link rel="stylesheet" href="../../../../../../base.css" />
@@ -19,13 +19,13 @@
1919
<body>
2020
<div class='wrapper'>
2121
<div class='pad1'>
22-
<h1><a href="../../../../../../index.html">All files</a> complex/float64/base/assert/is-almost-equal-value/lib</h1>
22+
<h1><a href="../../../../../../index.html">All files</a> complex/float64/base/assert/is-almost-equal/lib</h1>
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>115/115</span>
28+
<span class='fraction'>116/116</span>
2929
</div>
3030

3131

@@ -46,7 +46,7 @@ <h1><a href="../../../../../../index.html">All files</a> complex/float64/base/as
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>115/115</span>
49+
<span class='fraction'>116/116</span>
5050
</div>
5151

5252

@@ -99,13 +99,13 @@ <h1><a href="../../../../../../index.html">All files</a> complex/float64/base/as
9999
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
100100
</td>
101101
<td data-value="100" class="pct high">100%</td>
102-
<td data-value="67" class="abs high">67/67</td>
102+
<td data-value="68" class="abs high">68/68</td>
103103
<td data-value="100" class="pct high">100%</td>
104104
<td data-value="3" class="abs high">3/3</td>
105105
<td data-value="100" class="pct high">100%</td>
106106
<td data-value="1" class="abs high">1/1</td>
107107
<td data-value="100" class="pct high">100%</td>
108-
<td data-value="67" class="abs high">67/67</td>
108+
<td data-value="68" class="abs high">68/68</td>
109109
</tr>
110110

111111
</tbody>
@@ -116,7 +116,7 @@ <h1><a href="../../../../../../index.html">All files</a> complex/float64/base/as
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-07-11T08:44:16.835Z
119+
at 2025-07-11T09:04:43.478Z
120120
</div>
121121
<script src="../../../../../../prettify.js"></script>
122122
<script>

complex/float64/base/assert/is-almost-equal-value/index.js.html renamed to complex/float64/base/assert/is-almost-equal/index.js.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44

55
<head>
6-
<title>Code coverage report for complex/float64/base/assert/is-almost-equal-value/lib/index.js</title>
6+
<title>Code coverage report for complex/float64/base/assert/is-almost-equal/lib/index.js</title>
77
<meta charset="utf-8" />
88
<link rel="stylesheet" href="../../../../../../prettify.css" />
99
<link rel="stylesheet" href="../../../../../../base.css" />
@@ -19,7 +19,7 @@
1919
<body>
2020
<div class='wrapper'>
2121
<div class='pad1'>
22-
<h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">complex/float64/base/assert/is-almost-equal-value/lib</a> index.js</h1>
22+
<h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">complex/float64/base/assert/is-almost-equal/lib</a> index.js</h1>
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
@@ -182,20 +182,20 @@ <h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">
182182
/**
183183
* Test whether two double-precision complex floating-point numbers are approximately equal within a specified number of ULPs (units in the last place).
184184
*
185-
* @module @stdlib/complex/float64/base/assert/is-almost-equal-value
185+
* @module @stdlib/complex/float64/base/assert/is-almost-equal
186186
*
187187
* @example
188188
* var EPS = require( '@stdlib/constants/float64/eps' );
189189
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
190-
* var isAlmostEqualValue = require( '@stdlib/complex/float64/base/assert/is-almost-equal-value' );
190+
* var isAlmostEqual = require( '@stdlib/complex/float64/base/assert/is-almost-equal' );
191191
*
192192
* var z1 = new Complex128( 1.0, 3.0 );
193193
* var z2 = new Complex128( 1.0+EPS, 3.0 );
194194
*
195-
* var bool = isAlmostEqualValue( z1, z2, 0 );
195+
* var bool = isAlmostEqual( z1, z2, 0 );
196196
* // returns false
197197
*
198-
* bool = isAlmostEqualValue( z1, z2, 1 );
198+
* bool = isAlmostEqual( z1, z2, 1 );
199199
* // returns true
200200
*/
201201
&nbsp;
@@ -214,7 +214,7 @@ <h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">
214214
<div class='footer quiet pad2 space-top1 center small'>
215215
Code coverage generated by
216216
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
217-
at 2025-07-11T08:44:16.835Z
217+
at 2025-07-11T09:04:43.478Z
218218
</div>
219219
<script src="../../../../../../prettify.js"></script>
220220
<script>

complex/float64/base/assert/is-almost-equal-value/main.js.html renamed to complex/float64/base/assert/is-almost-equal/main.js.html

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44

55
<head>
6-
<title>Code coverage report for complex/float64/base/assert/is-almost-equal-value/lib/main.js</title>
6+
<title>Code coverage report for complex/float64/base/assert/is-almost-equal/lib/main.js</title>
77
<meta charset="utf-8" />
88
<link rel="stylesheet" href="../../../../../../prettify.css" />
99
<link rel="stylesheet" href="../../../../../../base.css" />
@@ -19,13 +19,13 @@
1919
<body>
2020
<div class='wrapper'>
2121
<div class='pad1'>
22-
<h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">complex/float64/base/assert/is-almost-equal-value/lib</a> main.js</h1>
22+
<h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">complex/float64/base/assert/is-almost-equal/lib</a> main.js</h1>
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>67/67</span>
28+
<span class='fraction'>68/68</span>
2929
</div>
3030

3131

@@ -46,7 +46,7 @@ <h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>67/67</span>
49+
<span class='fraction'>68/68</span>
5050
</div>
5151

5252

@@ -130,7 +130,9 @@ <h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">
130130
<a name='L65'></a><a href='#L65'>65</a>
131131
<a name='L66'></a><a href='#L66'>66</a>
132132
<a name='L67'></a><a href='#L67'>67</a>
133-
<a name='L68'></a><a href='#L68'>68</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
133+
<a name='L68'></a><a href='#L68'>68</a>
134+
<a name='L69'></a><a href='#L69'>69</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
135+
<span class="cline-any cline-yes">1x</span>
134136
<span class="cline-any cline-yes">1x</span>
135137
<span class="cline-any cline-yes">1x</span>
136138
<span class="cline-any cline-yes">1x</span>
@@ -219,6 +221,7 @@ <h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">
219221
&nbsp;
220222
// MODULES //
221223
&nbsp;
224+
// TODO: Update the import path to the correct package once the package is renamed.
222225
var isAlmostEqualValueF64 = require( '@stdlib/number/float64/base/assert/is-almost-equal-value' );
223226
var reim = require( '@stdlib/complex/float64/reim' );
224227
&nbsp;
@@ -245,13 +248,13 @@ <h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">
245248
* var z1 = new Complex128( 1.0, 3.0 );
246249
* var z2 = new Complex128( 1.0+EPS, 3.0 );
247250
*
248-
* var bool = isAlmostEqualValue( z1, z2, 0 );
251+
* var bool = isAlmostEqual( z1, z2, 0 );
249252
* // returns false
250253
*
251-
* bool = isAlmostEqualValue( z1, z2, 1 );
254+
* bool = isAlmostEqual( z1, z2, 1 );
252255
* // returns true
253256
*/
254-
function isAlmostEqualValue( z1, z2, maxULP ) {
257+
function isAlmostEqual( z1, z2, maxULP ) {
255258
var parts1 = reim( z1 );
256259
var parts2 = reim( z2 );
257260
return (
@@ -263,15 +266,15 @@ <h1><a href="../../../../../../index.html">All files</a> / <a href="index.html">
263266
&nbsp;
264267
// EXPORTS //
265268
&nbsp;
266-
module.exports = isAlmostEqualValue;
269+
module.exports = isAlmostEqual;
267270
&nbsp;</pre></td></tr></table></pre>
268271

269272
<div class='push'></div><!-- for sticky footer -->
270273
</div><!-- /wrapper -->
271274
<div class='footer quiet pad2 space-top1 center small'>
272275
Code coverage generated by
273276
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
274-
at 2025-07-11T08:44:16.835Z
277+
at 2025-07-11T09:04:43.478Z
275278
</div>
276279
<script src="../../../../../../prettify.js"></script>
277280
<script>

0 commit comments

Comments
 (0)