Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
kgryte committed Apr 3, 2024
2 parents 9e9ba56 + 5b084e0 commit 17e2839
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ function acosf( x ) {
if ( isnanf( x ) ) {
return NaN;
}
x = float64ToFloat32( x );
if ( x < -1.0 || x > 1.0 ) {
return NaN;
}
Expand All @@ -99,7 +100,6 @@ function acosf( x ) {
if ( x === -1.0 ) {
return PI;
}
x = float64ToFloat32( x );
ax = absf( x );
if ( ax < 0.5 ) {
if ( ax <= SMALL ) {
Expand Down

1 comment on commit 17e2839

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
blas/base/zcopy $\color{green}497/497$
$\color{green}+100.00\%$
$\color{green}31/31$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}497/497$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.