|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcern.colt.matrix.tdouble.algo.solver.preconditioner.DoubleILUT
public class DoubleILUT
ILU preconditioner with fill-in. Uses the dual threshold approach of Saad.
| Constructor Summary | |
|---|---|
DoubleILUT(int n)
Sets up the preconditioner for the given problem size. |
|
DoubleILUT(int n,
double tau,
int p)
Sets up the preconditioner for the problem size |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DoubleILUT(int n,
double tau,
int p)
n - Problem size (number of rows)tau - Drop tolerancep - Number of entries to keep on each row in of the factored
matrix. This is in addition to the entries of the original
matrixpublic DoubleILUT(int n)
n - Problem size (number of rows)| Method Detail |
|---|
public DoubleMatrix1D apply(DoubleMatrix1D b,
DoubleMatrix1D x)
DoublePreconditioner
apply in interface DoublePreconditionerb - Right hand side of problemx - Result is stored here
public DoubleMatrix1D transApply(DoubleMatrix1D b,
DoubleMatrix1D x)
DoublePreconditioner
transApply in interface DoublePreconditionerb - Right hand side of problemx - Result is stored here
public void setMatrix(DoubleMatrix2D A)
DoublePreconditioner
setMatrix in interface DoublePreconditionerA - Matrix to setup the preconditioner for. Not modified
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||