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 RecoverableConditionRecoverableCondition. newEquationSystemNotSolvable()static RecoverableConditionRecoverableCondition. newFailedToParseString(java.lang.String stringToParse, java.lang.Class<?> classToInstantiate)static RecoverableConditionRecoverableCondition. 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>DenseCholesky. invert(Access2D<?> original, PhysicalStore<N> preallocated)MatrixStore<N>DenseLDL. invert(Access2D<?> original)MatrixStore<N>DenseLDL. invert(Access2D<?> original, PhysicalStore<N> preallocated)MatrixStore<N>DenseLU. invert(Access2D<?> original)MatrixStore<N>DenseLU. invert(Access2D<?> original, PhysicalStore<N> preallocated)MatrixStore<N>DenseQR. invert(Access2D<?> original)MatrixStore<N>DenseQR. invert(Access2D<?> original, PhysicalStore<N> preallocated)MatrixStore<N>DenseSingularValue. invert(Access2D<?> original)MatrixStore<N>DenseSingularValue. invert(Access2D<?> original, PhysicalStore<N> preallocated)MatrixStore<N>HermitianEvD. invert(Access2D<?> original)MatrixStore<N>HermitianEvD. invert(Access2D<?> original, PhysicalStore<N> preallocated)MatrixStore<java.lang.Double>RawCholesky. invert(Access2D<?> original, PhysicalStore<java.lang.Double> preallocated)MatrixStore<java.lang.Double>RawEigenvalue.Symmetric. 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<java.lang.Double>SparseLU. invert(Access2D<?> original, PhysicalStore<java.lang.Double> preallocated)MatrixStore<N>DenseCholesky. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)MatrixStore<N>DenseLDL. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)MatrixStore<N>DenseLU. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)MatrixStore<N>DenseQR. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)MatrixStore<N>DenseSingularValue. solve(Access2D<?> body, Access2D<?> rhs)MatrixStore<N>DenseSingularValue. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated)MatrixStore<N>HermitianEvD. 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.Symmetric. 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, PhysicalStore<java.lang.Double> preallocated)MatrixStore<java.lang.Double>RawSingularValue. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)MatrixStore<java.lang.Double>SparseLU. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> 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 ofpreallocatedis 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 ofpreallocatedis 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>IterativeSolverTask. solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<java.lang.Double> preallocated)MatrixStore<java.lang.Double>MutableSolver. 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.ResultOptimisationService. doOptimise(Optimisation.Sense sense, byte[] contents, ExpressionsBasedModel.FileFormat format)java.lang.StringOptimisationService. 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)
-