]> www.ginac.de Git - cln.git/blob - src/float/ffloat/misc/cl_FF_min.cc
0fd428865220a9179b5a208c3d4bff6be6856864
[cln.git] / src / float / ffloat / misc / cl_FF_min.cc
1 // min().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/ffloat.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 const cl_FF min (const cl_FF& x, const cl_FF& y)
15 {
16         return (x <= y ? x : y);
17 }
18
19 }  // namespace cln