Uses of Class
elki.math.linearalgebra.ConstrainedQuadraticProblemSolver.DimensionState
-
Packages that use ConstrainedQuadraticProblemSolver.DimensionState Package Description elki.math.linearalgebra The linear algebra package provides classes and computational methods for operations on matrices and vectors. -
-
Uses of ConstrainedQuadraticProblemSolver.DimensionState in elki.math.linearalgebra
Fields in elki.math.linearalgebra declared as ConstrainedQuadraticProblemSolver.DimensionState Modifier and Type Field Description (package private) ConstrainedQuadraticProblemSolver.DimensionState[]
ConstrainedQuadraticProblemSolver.ProblemData. dimStates
Methods in elki.math.linearalgebra that return ConstrainedQuadraticProblemSolver.DimensionState Modifier and Type Method Description static ConstrainedQuadraticProblemSolver.DimensionState
ConstrainedQuadraticProblemSolver.DimensionState. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ConstrainedQuadraticProblemSolver.DimensionState[]
ConstrainedQuadraticProblemSolver.DimensionState. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in elki.math.linearalgebra with parameters of type ConstrainedQuadraticProblemSolver.DimensionState Modifier and Type Method Description private double
ConstrainedQuadraticProblemSolver. evaluateConstrainedQuadraticFunction(double[][] a, double[] b, double c, double[] min, double[] max, ConstrainedQuadraticProblemSolver.DimensionState[] dimensionStates, boolean cutoffCheck, double[] result, double resultValue)
Main recursive function.private static void
ConstrainedQuadraticProblemSolver. reduceConstraints(double[] inmin, double[] inmax, double[] outmin, double[] outmax, ConstrainedQuadraticProblemSolver.DimensionState[] instates, ConstrainedQuadraticProblemSolver.DimensionState[] outstates, int omit)
Reduces the constrains to a problem with dim-1private double
ConstrainedQuadraticProblemSolver. startReducedProblem(double[][] a, double[] b, double c, double[] min, double[] max, ConstrainedQuadraticProblemSolver.DimensionState[] dimStates, int reducedDim, ConstrainedQuadraticProblemSolver.DimensionState reducedTo, double[] result, double resultValue)
This function reduces the quadratic problem (given with a,b,c, bounds and dimState) with the information given in reducedDim and reducedTo.
-