]> www.ginac.de Git - cln.git/blob - src/float/ffloat/division/cl_FF_recip.cc
* Also filter out SCCS subdirs while recursing and searching for
[cln.git] / src / float / ffloat / division / cl_FF_recip.cc
1 // recip().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/ffloat.h"
8
9
10 // Implementation.
11
12 #include "cl_FF.h"
13
14 namespace cln {
15
16 const cl_FF recip (const cl_FF& x)
17 {
18         return cl_FF_1 / x;
19 }
20
21 }  // namespace cln