Package ptolemy.math
Class Overflow.ToZero
- java.lang.Object
-
- ptolemy.math.Overflow
-
- ptolemy.math.Overflow.ToZero
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class ptolemy.math.Overflow
Overflow.Grow, Overflow.Minimize, Overflow.Modulo, Overflow.Saturate, Overflow.ToZero, Overflow.Trap
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigInteger
minusInfinity(Quantization quant)
Return the value of minus infinity, or null if unrepresentable.java.math.BigInteger
plusInfinity(Quantization quant)
Return the value of plus infinity, or null if unrepresentable.FixPoint
quantize(java.math.BigInteger integerValue, Precision precision)
Return a new FixPoint object based on the given BigInteger value and Precision constraint.-
Methods inherited from class ptolemy.math.Overflow
clone, equals, forName, getName, hashCode, isOutOfRange, isOverflow, isUnderflow, nameIterator, quantizeGrow, quantizeMinimum, quantizeModulo, quantizeSaturate, quantizeToZero, toString
-
-
-
-
Method Detail
-
minusInfinity
public java.math.BigInteger minusInfinity(Quantization quant)
Description copied from class:Overflow
Return the value of minus infinity, or null if unrepresentable.The saturation value is returned for the saturate and to_zero strategies for which infinity is quantizable. Null is returned for other strategies.
- Overrides:
minusInfinity
in classOverflow
- Parameters:
quant
- The quantization specification.- Returns:
- The value if defined, null if not..
-
plusInfinity
public java.math.BigInteger plusInfinity(Quantization quant)
Description copied from class:Overflow
Return the value of plus infinity, or null if unrepresentable.The saturation value is returned for the saturate and to_zero strategies for which infinity is quantizable. Null is returned for other strategies.
- Overrides:
plusInfinity
in classOverflow
- Parameters:
quant
- The quantization specification.- Returns:
- The value if defined, null if not.
-
quantize
public FixPoint quantize(java.math.BigInteger integerValue, Precision precision)
Description copied from class:Overflow
Return a new FixPoint object based on the given BigInteger value and Precision constraint. This method will return a valid FixPoint object that conforms to the given overflow strategy implemented by the extending class.
-
-