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.
23 lines
338 B
23 lines
338 B
// square().
|
|
|
|
// 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"
|
|
|
|
namespace cln {
|
|
|
|
const cl_F square (const cl_F& x)
|
|
GEN_F_OP1(x, square, return)
|
|
|
|
} // namespace cln
|