Return the minimum exponent value
static int computeMinExponent(int exponentWidth) => -pow(2, exponentWidth - 1).toInt() + 2;