opale.matrix
Interface BandDecomposition

All Known Implementing Classes:
SolverLUBand

public interface BandDecomposition

This interface must be implemented by classes that define decomposition method for a band matrix, for instance LU, Cholesky... A class can be implemented both Solver and Decomposition.


Field Summary
static boolean REPLACE
          Set to true to indicate the algorithm modify the input matrix in the method decomp().
 
Method Summary
 void decomp(BandMatrix A)
          Decompose the matrix A.
 

Field Detail

REPLACE

public static final boolean REPLACE
Set to true to indicate the algorithm modify the input matrix in the method decomp().
Method Detail

decomp

public void decomp(BandMatrix A)
Decompose the matrix A.