Uses of Class
org.ojalgo.equation.Equation
Packages that use Equation
Package
Description
-
Uses of Equation in org.ojalgo.equation
Classes in org.ojalgo.equation that implement interfaces with type arguments of type EquationMethods in org.ojalgo.equation that return EquationModifier and TypeMethodDescriptionstatic EquationEquation.dense(int pivot, int cols) static <N extends Comparable<N>>
EquationEquation.dense(int pivot, int cols, DenseArray.Factory<N, ?> factory) static EquationEquation.of(double rhs, int pivot, double... body) static EquationEquation.sparse(int pivot, int cols) static EquationEquation.sparse(int pivot, int cols, int numberOfNonzeros) static <N extends Comparable<N>>
EquationEquation.sparse(int pivot, int cols, PlainArray.Factory<N, ?> factory) static <N extends Comparable<N>>
EquationEquation.sparse(int pivot, int cols, PlainArray.Factory<N, ?> factory, int numberOfNonzeros) static EquationEquation.wrap(BasicArray<?> body, int pivot, double rhs) Methods in org.ojalgo.equation that return types with arguments of type EquationModifier and TypeMethodDescriptionEquation.denseSystem(int rows, int cols) static <N extends Comparable<N>>
List<Equation> Equation.denseSystem(int rows, int cols, DenseArray.Factory<N, ?> factory) Equation.sparseSystem(int rows, int cols) Equation.sparseSystem(int rows, int cols, int numberOfNonzeros) static <N extends Comparable<N>>
List<Equation> Equation.sparseSystem(int rows, int cols, PlainArray.Factory<N, ?> factory) static <N extends Comparable<N>>
List<Equation> Equation.sparseSystem(int rows, int cols, PlainArray.Factory<N, ?> factory, int numberOfNonzeros) Methods in org.ojalgo.equation with parameters of type Equation -
Uses of Equation in org.ojalgo.matrix.task.iterative
Fields in org.ojalgo.matrix.task.iterative with type parameters of type EquationMethods in org.ojalgo.matrix.task.iterative that return types with arguments of type EquationModifier and TypeMethodDescriptionMutableSolver.equations()IterativeSolverTask.toListOfRows(Access2D<?> body, Access2D<?> rhs) Methods in org.ojalgo.matrix.task.iterative with parameters of type EquationModifier and TypeMethodDescriptionbooleanbooleanMethod parameters in org.ojalgo.matrix.task.iterative with type arguments of type EquationModifier and TypeMethodDescriptionvoidvoidvoidPrepare internal structures for a specific system.voiddoubleConjugateGradientSolver.resolve(List<Equation> equations, PhysicalStore<Double> solution) doubleGaussSeidelSolver.resolve(List<Equation> equations, PhysicalStore<Double> solution) abstract doubleIterativeSolverTask.resolve(List<Equation> equations, PhysicalStore<Double> solution) final doubleIterativeSolverTask.resolve(List<Equation> equations, PhysicalStore<Double> solution, Access1D<?> rhs) doubleJacobiSolver.resolve(List<Equation> equations, PhysicalStore<Double> solution) doubleMINRESSolver.resolve(List<Equation> equations, PhysicalStore<Double> x) doubleParallelGaussSeidelSolver.resolve(List<Equation> equations, PhysicalStore<Double> solution) private doubleParallelGaussSeidelSolver.resolve(List<Equation> equations, PhysicalStore<Double> solution, double normRHS, AtomicInteger iterationsCounter, int first, int limit) doubleQMRSolver.resolve(List<Equation> equations, PhysicalStore<Double> x) -
Uses of Equation in org.ojalgo.optimisation
Methods in org.ojalgo.optimisation that return types with arguments of type EquationModifier and TypeMethodDescriptiondefault Collection<Equation> UpdatableSolver.generateCutCandidates(double fractionality, boolean... integer) -
Uses of Equation in org.ojalgo.optimisation.convex
Fields in org.ojalgo.optimisation.convex declared as EquationModifier and TypeFieldDescriptionprivate final Equation[]IterativeASS.SchurComplementSolver.myIterationRows -
Uses of Equation in org.ojalgo.optimisation.linear
Methods in org.ojalgo.optimisation.linear that return EquationModifier and TypeMethodDescription(package private) static EquationTableauCutGenerator.doGomory(Primitive1D body, int index, double rhs, double fractionality) Calculates a Gomory cut – all variables must be integer.(package private) static EquationTableauCutGenerator.doGomoryMixedInteger(Primitive1D body, int index, double rhs, boolean[] integer) Assumes all variables positive [0,∞).(package private) static EquationTableauCutGenerator.doGomoryMixedInteger(Primitive1D body, int index, double rhs, double fractionality, int[] excluded, boolean[] integer) (package private) static EquationTableauCutGenerator.doGomoryMixedInteger(Primitive1D body, int index, double rhs, double fractionality, int[] excluded, boolean[] integers, double[] lowers, double[] uppers, double[] shifts) Calculates a Gomory Mixed Integer (GMI) cut.Methods in org.ojalgo.optimisation.linear that return types with arguments of type EquationModifier and TypeMethodDescriptionfinal Collection<Equation> SimplexSolver.generateCutCandidates(double fractionality, boolean... integer) (package private) final Collection<Equation> SimplexStore.generateCutCandidates(boolean[] integer, NumberContext accuracy, double fractionality, double[] shift) WhenSimplexSolveris used as node solver forIntegerSolverthis method generates cut candidates.(package private) final Collection<Equation> SimplexTableau.generateCutCandidates(boolean[] integer, NumberContext accuracy, double fractionality) Simplified version ofSimplexStore.generateCutCandidates(boolean[], NumberContext, double, double[])for specific use withSimplexTableauSolver.final Collection<Equation> SimplexTableauSolver.generateCutCandidates(double fractionality, boolean... integer)