]> www.ginac.de Git - cln.git/blob - src/float/dfloat/misc/cl_DF_min.cc
* include/cln/number.h (As): Fix it in namespace by suffixing `_As'
[cln.git] / src / float / dfloat / misc / cl_DF_min.cc
1 // min().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/dfloat.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 const cl_DF min (const cl_DF& x, const cl_DF& y)
15 {
16         return (x <= y ? x : y);
17 }
18
19 }  // namespace cln