public interface DoublePreconditioner
setMatrix
must be calledModifier and Type | Method and Description |
---|---|
DoubleMatrix1D |
apply(DoubleMatrix1D b,
DoubleMatrix1D x)
Solves the approximate problem with the given right hand side.
|
void |
setMatrix(DoubleMatrix2D A)
Sets the operator matrix for the preconditioner.
|
DoubleMatrix1D |
transApply(DoubleMatrix1D b,
DoubleMatrix1D x)
Solves the approximate transpose problem with the given right hand side.
|
DoubleMatrix1D apply(DoubleMatrix1D b, DoubleMatrix1D x)
b
- Right hand side of problemx
- Result is stored hereDoubleMatrix1D transApply(DoubleMatrix1D b, DoubleMatrix1D x)
b
- Right hand side of problemx
- Result is stored herevoid setMatrix(DoubleMatrix2D A)
A
- Matrix to setup the preconditioner for. Not modifiedJump to the Parallel Colt Homepage