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