]> www.ginac.de Git - cln.git/blob - src/float/elem/cl_F_div.cc
74d031384160f9cbec0f3dc958c1ef331f215d67
[cln.git] / src / float / elem / cl_F_div.cc
1 // binary operator /
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_float.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13 #include "cl_sfloat.h"
14 #include "cl_ffloat.h"
15 #include "cl_dfloat.h"
16 #include "cl_lfloat.h"
17 #include "cl_LF.h"
18
19 ALL_cl_LF_OPERATIONS_SAME_PRECISION()
20
21 const cl_F operator/ (const cl_F& x, const cl_F& y)
22 #define div(a,b) a/b
23 GEN_F_OP2(x,y, div, 1, 1, return)