7 #include "cln/lfloat.h"
16 const cl_LF_div_t round2 (const cl_LF& x, const cl_LF& y)
19 // (q,r) := round(x/y). Liefere q und x-y*q = y*r.
20 var cl_LF_div_t q_r = round2(x/y);
21 var cl_I& q = q_r.quotient;
22 var cl_LF& r = q_r.remainder;
23 return cl_LF_div_t(q,y*r);