Uses of Interface
org.uma.jmetal.util.bounds.Bounds
-
Uses of Bounds in org.uma.jmetal.problem
Methods in org.uma.jmetal.problem that return types with arguments of type Bounds Modifier and Type Method Description default java.util.List<Bounds<T>>BoundedProblem. getBoundsForVariables() -
Uses of Bounds in org.uma.jmetal.problem.doubleproblem.impl
Fields in org.uma.jmetal.problem.doubleproblem.impl with type parameters of type Bounds Modifier and Type Field Description protected java.util.List<Bounds<java.lang.Double>>AbstractDoubleProblem. boundsMethods in org.uma.jmetal.problem.doubleproblem.impl that return types with arguments of type Bounds Modifier and Type Method Description java.util.List<Bounds<java.lang.Double>>AbstractDoubleProblem. getBoundsForVariables()java.util.List<Bounds<java.lang.Double>>ComposableDoubleProblem. getBoundsForVariables() -
Uses of Bounds in org.uma.jmetal.problem.integerproblem.impl
Fields in org.uma.jmetal.problem.integerproblem.impl with type parameters of type Bounds Modifier and Type Field Description protected java.util.List<Bounds<java.lang.Integer>>AbstractIntegerProblem. boundsMethods in org.uma.jmetal.problem.integerproblem.impl that return types with arguments of type Bounds Modifier and Type Method Description java.util.List<Bounds<java.lang.Integer>>AbstractIntegerProblem. getBoundsForVariables() -
Uses of Bounds in org.uma.jmetal.solution.doublesolution
Methods in org.uma.jmetal.solution.doublesolution that return Bounds Modifier and Type Method Description default Bounds<java.lang.Double>DoubleSolution. getBounds(int index)It is often the case that we use both bounds together. -
Uses of Bounds in org.uma.jmetal.solution.doublesolution.impl
Fields in org.uma.jmetal.solution.doublesolution.impl with type parameters of type Bounds Modifier and Type Field Description protected java.util.List<Bounds<java.lang.Double>>DefaultDoubleSolution. boundsMethods in org.uma.jmetal.solution.doublesolution.impl that return Bounds Modifier and Type Method Description Bounds<java.lang.Double>DefaultDoubleSolution. getBounds(int index)Constructor parameters in org.uma.jmetal.solution.doublesolution.impl with type arguments of type Bounds Constructor Description DefaultDoubleSolution(int numberOfObjectives, int numberOfConstraints, java.util.List<Bounds<java.lang.Double>> boundsList)ConstructorDefaultDoubleSolution(int numberOfObjectives, java.util.List<Bounds<java.lang.Double>> boundsList)Constructor -
Uses of Bounds in org.uma.jmetal.solution.integersolution
Methods in org.uma.jmetal.solution.integersolution that return Bounds Modifier and Type Method Description default Bounds<java.lang.Integer>IntegerSolution. getBounds(int index)It is often the case that we use both bounds together. -
Uses of Bounds in org.uma.jmetal.solution.integersolution.impl
Fields in org.uma.jmetal.solution.integersolution.impl with type parameters of type Bounds Modifier and Type Field Description protected java.util.List<Bounds<java.lang.Integer>>DefaultIntegerSolution. boundsMethods in org.uma.jmetal.solution.integersolution.impl that return Bounds Modifier and Type Method Description Bounds<java.lang.Integer>DefaultIntegerSolution. getBounds(int index)Constructor parameters in org.uma.jmetal.solution.integersolution.impl with type arguments of type Bounds Constructor Description DefaultIntegerSolution(int numberOfObjectives, int numberOfConstraints, java.util.List<Bounds<java.lang.Integer>> boundsList)ConstructorDefaultIntegerSolution(int numberOfObjectives, java.util.List<Bounds<java.lang.Integer>> bounds)Constructor -
Uses of Bounds in org.uma.jmetal.util.bounds
Methods in org.uma.jmetal.util.bounds that return Bounds Modifier and Type Method Description static <T extends java.lang.Comparable<T>>
Bounds<T>Bounds. create(T lowerBound, T upperBound)Create aBoundswith the given lower and upper limits.static <T extends java.lang.Comparable<T>>
Bounds<T>Bounds. fromPair(org.apache.commons.lang3.tuple.Pair<T,T> pair)Deprecated.This method is here for legacy purpose.