com.unit16.z.math.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unit16-z Show documentation
Show all versions of unit16-z Show documentation
A collection of utilities for representing and manipulating time series and such.
package com.unit16.z.math;
public class Constants {
/**
* Using max / 2 to avoid overflow.
* In particular, -Integer.MIN_VALUE is smaller than 0 !
*/
public static final int POSITIVE_INFINITY = Integer.MAX_VALUE / 2;
public static final int NEGATIVE_INFINITY = Integer.MIN_VALUE / 2;
}