max method

DD max(
  1. DD x
)

Computes the maximum of this and another DD number.

@param x a DD number @return the maximum of the two numbers

Implementation

DD max(DD x) {
  if (this.ge(x)) {
    return this;
  } else {
    return x;
  }
}