]> www.ginac.de Git - cln.git/blob - src/real/misc/cl_R_max.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / real / misc / cl_R_max.cc
1 // max().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/real.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 const cl_R max (const cl_R& x, const cl_R& y)
15 {
16         return (x >= y ? x : y);
17 }
18
19 }  // namespace cln