]> www.ginac.de Git - cln.git/blob - src/real/misc/cl_R_min.cc
Initial revision
[cln.git] / src / real / misc / cl_R_min.cc
1 // min().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_real.h"
8
9
10 // Implementation.
11
12 const cl_R min (const cl_R& x, const cl_R& y)
13 {
14         return (x <= y ? x : y);
15 }