]> www.ginac.de Git - cln.git/blob - src/float/division/cl_F_round22.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / division / cl_F_round22.cc
1 // round2().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/float.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13
14 namespace cln {
15
16 const cl_F_div_t round2 (const cl_F& x, const cl_F& y)
17 {
18 // Methode:
19 // (q,r) := round(x/y). Liefere q und x-y*q = y*r.
20         var cl_F_div_t q_r = round2(x/y);
21         var cl_I& q = q_r.quotient;
22         var cl_F& r = q_r.remainder;
23         return cl_F_div_t(q,y*r);
24 }
25
26 }  // namespace cln