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