Uses of Interface
org.xcsp.common.domains.Values.SimpleValue
-
Packages that use Values.SimpleValue Package Description org.xcsp.common.domains org.xcsp.parser.entries -
-
Uses of Values.SimpleValue in org.xcsp.common.domains
Classes in org.xcsp.common.domains that implement Values.SimpleValue Modifier and Type Class Description static class
Values.Decimal
A class to represent decimal values.static class
Values.IntegerValue
A class to represent an integer value.static class
Values.Rational
A class to represent rational values.Fields in org.xcsp.common.domains declared as Values.SimpleValue Modifier and Type Field Description Values.SimpleValue
Values.RealInterval. inf
The bounds of the interval.Values.SimpleValue[]
Domains.DomStochastic. probas
The probabilities associated with the values of the domain: probas[i] is the probability of values[i].Values.SimpleValue
Values.RealInterval. sup
The bounds of the interval.Methods in org.xcsp.common.domains that return Values.SimpleValue Modifier and Type Method Description static Values.SimpleValue
Values.SimpleValue. parse(String s)
Returns a simple value obtained by parsing the specified string.static Values.SimpleValue
Values.SimpleValue. parse(String s, boolean checkSpecialValues)
Returns a simple value obtained by parsing the specified string.static Values.SimpleValue[]
Values.SimpleValue. parseSeq(String seq)
Returns an array of SimpleValue objects, obtained by parsing the specified string.Constructors in org.xcsp.common.domains with parameters of type Values.SimpleValue Constructor Description DomStochastic(Object[] values, Values.SimpleValue[] probas)
Builds a stochastic domain, with the specified values and the specified probabilities.RealInterval(Values.SimpleValue inf, Values.SimpleValue sup, boolean infClosed, boolean supClosed)
Builds a real interval with the specified bounds together with their status. -
Uses of Values.SimpleValue in org.xcsp.parser.entries
Fields in org.xcsp.parser.entries declared as Values.SimpleValue Modifier and Type Field Description Values.SimpleValue[]
XObjectives.OObjectiveSpecial. coeffs
The list of coefficients.Constructors in org.xcsp.parser.entries with parameters of type Values.SimpleValue Constructor Description OObjectiveSpecial(boolean minimize, Types.TypeObjective type, Object[] terms, Values.SimpleValue[] coeffs)
Builds an objective from the specified arrays of variables and coefficients.
-