|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcern.colt.matrix.tfloat.algo.solver.preconditioner.FloatILUT
public class FloatILUT
ILU preconditioner with fill-in. Uses the dual threshold approach of Saad.
| Constructor Summary | |
|---|---|
FloatILUT(int n)
Sets up the preconditioner for the given problem size. |
|
FloatILUT(int n,
float tau,
int p)
Sets up the preconditioner for the problem size |
|
| Method Summary | |
|---|---|
FloatMatrix1D |
apply(FloatMatrix1D b,
FloatMatrix1D x)
Solves the approximate problem with the given right hand side. |
void |
setMatrix(FloatMatrix2D A)
Sets the operator matrix for the preconditioner. |
FloatMatrix1D |
transApply(FloatMatrix1D b,
FloatMatrix1D 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 FloatILUT(int n,
float 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 FloatILUT(int n)
n - Problem size (number of rows)| Method Detail |
|---|
public FloatMatrix1D apply(FloatMatrix1D b,
FloatMatrix1D x)
FloatPreconditioner
apply in interface FloatPreconditionerb - Right hand side of problemx - Result is stored here
public FloatMatrix1D transApply(FloatMatrix1D b,
FloatMatrix1D x)
FloatPreconditioner
transApply in interface FloatPreconditionerb - Right hand side of problemx - Result is stored here
public void setMatrix(FloatMatrix2D A)
FloatPreconditioner
setMatrix in interface FloatPreconditionerA - Matrix to setup the preconditioner for. Not modified
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||