Uses of Class
org.ojalgo.RecoverableCondition
-
Packages that use RecoverableCondition Package Description org.ojalgo org.ojalgo.matrix.decomposition org.ojalgo.matrix.task org.ojalgo.matrix.task.iterative org.ojalgo.optimisation.service org.ojalgo.type -
-
Uses of RecoverableCondition in org.ojalgo
Methods in org.ojalgo that return RecoverableCondition Modifier and Type Method Description static RecoverableCondition
RecoverableCondition. newEquationSystemNotSolvable()
static RecoverableCondition
RecoverableCondition. newFailedToParseString(java.lang.String stringToParse, java.lang.Class<?> classToInstantiate)
static RecoverableCondition
RecoverableCondition. newMatrixNotInvertible()
-
Uses of RecoverableCondition in org.ojalgo.matrix.decomposition
Methods in org.ojalgo.matrix.decomposition that throw RecoverableCondition Modifier and Type Method Description MatrixStore<N>
CholeskyDecomposition. invert(Access2D<?> original)
MatrixStore<N>
CholeskyDecomposition. invert(Access2D<?> original, PhysicalStore<N> preallocated)
MatrixStore<N>
HermitianEvD. invert(Access2D<?> original)
MatrixStore<N>
HermitianEvD. invert(Access2D<?> original, PhysicalStore<N> preallocated)
MatrixStore<N>
LDLDecomposition. invert(Access2D<?> original)
MatrixStore<N>
LDLDecomposition. invert(Access2D<?> original, PhysicalStore<N> preallocated)
MatrixStore<N>
LUDecomposition. invert(Access2D<?> original)
MatrixStore<N>
LUDecomposition. invert(Access2D<?> original, PhysicalStore<N> preallocated)
MatrixStore<N>
QRDecomposition. invert(Access2D<?> original)
MatrixStore<N>
QRDecomposition. invert(Access2D<?> original, PhysicalStore<N> preallocated)
MatrixStore<java.lang.Double>
RawCholesky. invert(Access2D<?> original, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawEigenvalue. invert(Access2D<?> original, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawLU. invert(Access2D<?> original, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawQR. invert(Access2D<?> original, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawSingularValue. invert(Access2D<?> original, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<N>
SingularValueDecomposition. invert(Access2D<?> original)
MatrixStore<N>
SingularValueDecomposition. invert(Access2D<?> original, PhysicalStore<N> preallocated)
MatrixStore<N>
CholeskyDecomposition. solve(Access2D<?> body, Access2D<?> rhs)
MatrixStore<N>
CholeskyDecomposition. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)
MatrixStore<N>
HermitianEvD. solve(Access2D<?> body, Access2D<?> rhs)
MatrixStore<N>
HermitianEvD. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)
MatrixStore<N>
LDLDecomposition. solve(Access2D<?> body, Access2D<?> rhs)
MatrixStore<N>
LDLDecomposition. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)
MatrixStore<N>
LUDecomposition. solve(Access2D<?> body, Access2D<?> rhs)
MatrixStore<N>
LUDecomposition. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)
MatrixStore<N>
QRDecomposition. solve(Access2D<?> body, Access2D<?> rhs)
MatrixStore<N>
QRDecomposition. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)
MatrixStore<java.lang.Double>
RawCholesky. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawEigenvalue. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawLU. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawQR. solve(Access2D<?> body, Access2D<?> rhs)
MatrixStore<java.lang.Double>
RawQR. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
RawSingularValue. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<N>
SingularValueDecomposition. solve(Access2D<?> body, Access2D<?> rhs)
MatrixStore<N>
SingularValueDecomposition. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)
-
Uses of RecoverableCondition in org.ojalgo.matrix.task
Methods in org.ojalgo.matrix.task that throw RecoverableCondition Modifier and Type Method Description MatrixStore<java.lang.Double>
AbstractInverter. invert(Access2D<?> original)
MatrixStore<N>
InverterTask.Factory. invert(Access2D<?> original)
default MatrixStore<N>
InverterTask. invert(Access2D<?> original)
The output must be a "right inverse" and a "generalised inverse".MatrixStore<N>
InverterTask. invert(Access2D<?> original, PhysicalStore<N> preallocated)
Exactly how (if at all) a specific implementation makes use ofpreallocated
is not specified by this interface.MatrixStore<N>
SolverTask.Factory. solve(Access2D<?> body, Access2D<?> rhs)
[A][X]=[B] or [body][return]=[rhs]default MatrixStore<N>
SolverTask. solve(Access2D<?> body, Access2D<?> rhs)
[A][X]=[B] or [body][return]=[rhs]MatrixStore<N>
SolverTask. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)
Exactly how (if at all) a specific implementation makes use ofpreallocated
is not specified by this interface. -
Uses of RecoverableCondition in org.ojalgo.matrix.task.iterative
Methods in org.ojalgo.matrix.task.iterative that throw RecoverableCondition Modifier and Type Method Description MatrixStore<java.lang.Double>
ConjugateGradientSolver. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)
MatrixStore<java.lang.Double>
GaussSeidelSolver. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> current)
MatrixStore<java.lang.Double>
JacobiSolver. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> current)
MatrixStore<java.lang.Double>
MutableSolver. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> current)
MatrixStore<java.lang.Double>
ParallelGaussSeidelSolver. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> current)
-
Uses of RecoverableCondition in org.ojalgo.optimisation.service
Methods in org.ojalgo.optimisation.service that throw RecoverableCondition Modifier and Type Method Description private static Optimisation.Result
OptimisationService. doOptimise(Optimisation.Sense sense, byte[] contents, ExpressionsBasedModel.FileFormat format)
java.lang.String
OptimisationService. putOnQueue(Optimisation.Sense sense, byte[] contents, ExpressionsBasedModel.FileFormat format)
-
Uses of RecoverableCondition in org.ojalgo.type
Constructors in org.ojalgo.type that throw RecoverableCondition Constructor Description CalendarDate(java.lang.String sqlString)
-