Uses of Class
org.ojalgo.equation.Equation
Packages that use Equation
Package
Description
-
Uses of Equation in org.ojalgo.equation
Methods in org.ojalgo.equation that return EquationModifier and TypeMethodDescriptionstatic Equation
Equation.dense
(int pivot, int cols) static <N extends Comparable<N>>
EquationEquation.dense
(int pivot, int cols, DenseArray.Factory<N> factory) static Equation
Equation.of
(double rhs, int pivot, double... body) static Equation
Equation.sparse
(int pivot, int cols) static Equation
Equation.sparse
(int pivot, int cols, int numberOfNonzeros) static <N extends Comparable<N>>
EquationEquation.sparse
(int pivot, int cols, DenseArray.Factory<N> factory) static <N extends Comparable<N>>
EquationEquation.sparse
(int pivot, int cols, DenseArray.Factory<N> factory, int numberOfNonzeros) static Equation
Equation.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, DenseArray.Factory<N> factory) static <N extends Comparable<N>>
List<Equation> Equation.sparseSystem
(int rows, int cols, DenseArray.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 TypeMethodDescriptionIterativeSolverTask.toListOfRows
(Access2D<?> body, Access2D<?> rhs) Methods in org.ojalgo.matrix.task.iterative with parameters of type EquationModifier and TypeMethodDescriptionboolean
boolean
Method parameters in org.ojalgo.matrix.task.iterative with type arguments of type EquationModifier and TypeMethodDescriptiondouble
ConjugateGradientSolver.resolve
(List<Equation> equations, PhysicalStore<Double> solution) double
GaussSeidelSolver.resolve
(List<Equation> equations, PhysicalStore<Double> solution) double
IterativeSolverTask.SparseDelegate.resolve
(List<Equation> equations, PhysicalStore<Double> solution) default double
IterativeSolverTask.SparseDelegate.resolve
(List<Equation> equations, PhysicalStore<Double> solution, Access1D<?> rhs) double
ParallelGaussSeidelSolver.resolve
(List<Equation> equations, PhysicalStore<Double> solution) private double
ParallelGaussSeidelSolver.resolve
(List<Equation> equations, PhysicalStore<Double> solution, double normRHS, AtomicInteger iterationsCounter, int first, int last) -
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 Equation
TableauCutGenerator.doGomory
(Primitive1D body, int index, double rhs, double fractionality) Calculates a Gomory cut – all variables must be integer.(package private) static Equation
TableauCutGenerator.doGomoryMixedInteger
(Primitive1D body, int index, double rhs, boolean[] integer) Assumes all variables positive [0,∞).(package private) static Equation
TableauCutGenerator.doGomoryMixedInteger
(Primitive1D body, int index, double rhs, double fractionality, int[] excluded, boolean[] integer) (package private) static Equation
TableauCutGenerator.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) (package private) final Collection
<Equation> SimplexTableau.generateCutCandidates
(boolean[] integer, NumberContext accuracy, double fractionality) Simplified version ofSimplexStore.generateCutCandidates(boolean[], NumberContext, double, double[])
.final Collection
<Equation> SimplexTableauSolver.generateCutCandidates
(double fractionality, boolean... integer)