NAME
dmin --- minimum of two doubles
SYNOPSIS
390 static inline double dmin(double x, double y)
INPUTS
x, y doubles
OUTPUTS
min(x,y)
SOURCE
394 { 395 return x<y ? x : y; 396 }