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