Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Apr 12, 2024
1 parent 67a9dd0 commit e8a90c5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,13 @@ jobs:
- name: 'Upload coverage to Codecov'
id: upload
# Pin action to full length commit SHA
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0
with:
directory: reports/coverage
flags: unittests
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

# Extract coverage value:
- name: 'Extract coverage value and assign to output'
Expand Down Expand Up @@ -117,7 +119,6 @@ jobs:
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#npm-ci'
if: failure()

Expand Down
2 changes: 1 addition & 1 deletion base/tools/evalrational/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Evaluates a [rational function][rational-function] at a value `x` using double-p
var P = [ -6.0, -5.0 ];
var Q = [ 3.0, 0.5 ];

var v = evalrational( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
var v = evalrational( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
// returns -6.0
```

Expand Down
2 changes: 1 addition & 1 deletion base/tools/evalrational/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var abs = require( './../../../../base/special/abs' );
* var P = [ -6.0, -5.0 ];
* var Q = [ 3.0, 0.5 ];
*
* var v = evalrational( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
* var v = evalrational( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
* // returns -6.0
*
* @example
Expand Down
2 changes: 1 addition & 1 deletion base/tools/evalrationalf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ var Float32Array = require( '@stdlib/array/float32' );
var P = new Float32Array( [ -6.0, -5.0 ] );
var Q = new Float32Array( [ 3.0, 0.5 ] );

var v = evalrationalf( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
var v = evalrationalf( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
// returns -6.0
```

Expand Down
2 changes: 1 addition & 1 deletion base/tools/evalrationalf/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ var absf = require( './../../../../base/special/absf' );
* var P = new Float32Array( [ -6.0, -5.0 ] );
* var Q = new Float32Array( [ 3.0, 0.5 ] );
*
* var v = evalrationalf( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
* var v = evalrationalf( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 ) / ( 3*6^0 + 0.5*6^1 ) = (-6-30)/(3+3)
* // returns -6.0
*
* @example
Expand Down

0 comments on commit e8a90c5

Please sign in to comment.