Skip to content

Commit

Permalink
chore: stuff from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
aayush0325 committed Nov 13, 2024
1 parent 072e306 commit ed89c11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/cinvf/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ function cinvf( z ) {
}
if ( absf( im ) <= absf( re ) ) {
r = im / re;
t = 1.0 / ( re + ( im * r) );
t = 1.0 / ( re + ( im * r ) );
re = t;
im = -r * t;
} else {
r = re / im;
t = 1.0 / ( im + ( re * r) );
t = 1.0 / ( im + ( re * r ) );
re = r * t;
im = -t;
}
Expand Down

0 comments on commit ed89c11

Please sign in to comment.