You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
710 B
34 lines
710 B
// truncate2().
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/float.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cl_F.h"
|
|
#include "cln/sfloat.h"
|
|
#include "cln/ffloat.h"
|
|
#include "cln/dfloat.h"
|
|
#include "cln/lfloat.h"
|
|
#include "cl_SF.h"
|
|
#include "cl_FF.h"
|
|
#include "cl_DF.h"
|
|
#include "cl_LF.h"
|
|
|
|
namespace cln {
|
|
|
|
const cl_F_div_t truncate2 (const cl_F& x)
|
|
{
|
|
floatcase(x
|
|
, var cl_SF q = ftruncate(x); return cl_F_div_t(cl_SF_to_I(q),x-q);
|
|
, var cl_FF q = ftruncate(x); return cl_F_div_t(cl_FF_to_I(q),x-q);
|
|
, var cl_DF q = ftruncate(x); return cl_F_div_t(cl_DF_to_I(q),x-q);
|
|
, var cl_LF q = ftruncate(x); return cl_F_div_t(cl_LF_to_I(q),LF_LF_minus_LF(x,q));
|
|
);
|
|
}
|
|
|
|
} // namespace cln
|