Package io.github.cvc5
Class OptionInfo.NumberInfo<T>
java.lang.Object
io.github.cvc5.OptionInfo.BaseInfo
io.github.cvc5.OptionInfo.ValueInfo<T>
io.github.cvc5.OptionInfo.NumberInfo<T>
- Type Parameters:
T
- the type of the numeric value
- Enclosing class:
OptionInfo
Default value, current value, minimum and maximum of a numeric value
-
Constructor Summary
ConstructorsConstructorDescriptionNumberInfo
(T defaultValue, T currentValue, T minimum, T maximum) Construct aNumberInfo
instance with specified default value, current value, minimum, and maximum. -
Method Summary
Modifier and TypeMethodDescriptionGet the maximum value.Get the minimum value.Methods inherited from class io.github.cvc5.OptionInfo.ValueInfo
getCurrentValue, getDefaultValue
-
Constructor Details
-
NumberInfo
Construct aNumberInfo
instance with specified default value, current value, minimum, and maximum.- Parameters:
defaultValue
- The default value.currentValue
- The current value.minimum
- The minimum value.maximum
- The maximum value.
-
-
Method Details
-
getMinimum
Get the minimum value.- Returns:
- The minimum value.
-
getMaximum
Get the maximum value.- Returns:
- The maximum value.
-