// max(). // General includes. #include "cl_sysdep.h" // Specification. #include "cl_dfloat.h" // Implementation. const cl_DF max (const cl_DF& x, const cl_DF& y) { return (x >= y ? x : y); }