ge method

bool ge(
  1. DD y
)

Tests whether this value is greater than or equals to another DoubleDouble value. @param y a DoubleDouble value @return true if this value >= y

Implementation

bool ge(DD y) {
  return (hi > y.hi) || (hi == y.hi && lo >= y.lo);
}