// signum(). // General includes. #include "cl_sysdep.h" // Specification. #include "cln/ffloat.h" // Implementation. #include "cl_FF.h" #include "cl_inline.h" #include "cl_FF_minusp.cc" #include "cl_FF_zerop.cc" namespace cln { CL_INLINE2 const cl_FF CL_INLINE2_DECL(signum) (const cl_FF& x) { if (minusp_inline(x)) { return cl_FF_minus1; } // x<0 -> -1.0 elif (zerop_inline(x)) { return cl_FF_0; } // x=0 -> 0.0 else { return cl_FF_1; } // x>0 -> +1.0 } } // namespace cln