/** * Get the maximum value in X * * @return Maximal value */ public double getMax() { double[] d = proxy.getLimits(); return d[1]; }
/** * Get the minimum value in X * * @return min Minimum value */ public double getMin() { double[] d = proxy.getLimits(); return d[0]; }