File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
lib/node_modules/@stdlib/math/base/special/cinvf Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 4242 " @stdlib/math/base/special/absf" ,
4343 " @stdlib/constants/float32/max" ,
4444 " @stdlib/constants/float32/eps" ,
45- " @stdlib/constants/float32/smallest-normal" ,
46- " @stdlib/math/base/special/maxf"
45+ " @stdlib/constants/float32/smallest-normal"
4746 ]
4847 },
4948 {
6261 " @stdlib/math/base/special/absf" ,
6362 " @stdlib/constants/float32/max" ,
6463 " @stdlib/constants/float32/eps" ,
65- " @stdlib/constants/float32/smallest-normal" ,
66- " @stdlib/math/base/special/maxf"
64+ " @stdlib/constants/float32/smallest-normal"
6765 ]
6866 },
6967 {
8280 " @stdlib/math/base/special/absf" ,
8381 " @stdlib/constants/float32/max" ,
8482 " @stdlib/constants/float32/eps" ,
85- " @stdlib/constants/float32/smallest-normal" ,
86- " @stdlib/math/base/special/maxf"
83+ " @stdlib/constants/float32/smallest-normal"
8784 ]
8885 }
8986 ]
Original file line number Diff line number Diff line change 1818
1919#include "stdlib/math/base/special/cinvf.h"
2020#include "stdlib/math/base/special/absf.h"
21- #include "stdlib/math/base/special/maxf"
2221#include "stdlib/constants/float32/max.h"
2322#include "stdlib/constants/float32/eps.h"
2423#include "stdlib/constants/float32/smallest_normal.h"
@@ -71,7 +70,7 @@ stdlib_complex64_t stdlib_base_cinvf( const stdlib_complex64_t z ) {
7170
7271 stdlib_complex64_reim ( z , & re , & im );
7372
74- ab = stdlib_base_maxf ( stdlib_base_absf ( re ), stdlib_base_absf ( im ) );
73+ ab = maxf ( stdlib_base_absf ( re ), stdlib_base_absf ( im ) );
7574 s = 1.0f ;
7675 if ( ab >= LARGE_THRESHOLD ) {
7776 re *= 0.5f ;
You can’t perform that action at this time.
0 commit comments