TABLE OF CONTENTS


CmiscUtils/dmax [ Functions ]

NAME

    dmax --- maximum of two doubles

SYNOPSIS

408 static inline double dmax(double x, double y) 

INPUTS

   x,y    doubles

OUTPUTS

   max(x,y)

SOURCE

412 {
413     return x>y ? x : y;
414 }