X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Felem%2Fcl_F_RA_mul.cc;h=9eeb6be265151a8194cf94d063b34e08e59baefa;hb=2691282fd91d682114fc954f30d04b5fe32c7e56;hp=5f2905ddc6f0affa1a3d870577c204cfc6d46a3c;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/float/elem/cl_F_RA_mul.cc b/src/float/elem/cl_F_RA_mul.cc index 5f2905d..9eeb6be 100644 --- a/src/float/elem/cl_F_RA_mul.cc +++ b/src/float/elem/cl_F_RA_mul.cc @@ -4,22 +4,24 @@ #include "cl_sysdep.h" // Specification. -#include "cl_float.h" +#include "cln/float.h" // Implementation. #include "cl_RA.h" -#include "cl_sfloat.h" -#include "cl_ffloat.h" -#include "cl_dfloat.h" -#include "cl_lfloat.h" +#include "cln/sfloat.h" +#include "cln/ffloat.h" +#include "cln/dfloat.h" +#include "cln/lfloat.h" #include "cl_F.h" #include "cl_SF.h" #include "cl_FF.h" #include "cl_DF.h" #include "cl_LF.h" +namespace cln { + const cl_R cl_F_RA_mul (const cl_F& x, const cl_RA& y) { if (eq(y,0)) { return 0; } // x * 0 = exakte 0 @@ -30,3 +32,5 @@ const cl_R cl_F_RA_mul (const cl_F& x, const cl_RA& y) , /* LF */ return cl_LF_RA_mul(x,y); ); } + +} // namespace cln