]> www.ginac.de Git - cln.git/blob - src/float/dfloat/misc/cl_DF_min.cc
* Removed internal gmp/ directory and other traces of it like $GMP_INCLUDES.
[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 "cl_dfloat.h"
8
9
10 // Implementation.
11
12 const cl_DF min (const cl_DF& x, const cl_DF& y)
13 {
14         return (x <= y ? x : y);
15 }