|
JMSLTM Numerical Library 5.0.1 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.imsl.math.SuperLU
public class SuperLU
Computes the LU factorization of a general sparse matrix of type
SparseMatrix
by a column method and solves the real sparse linear
system of equations .
Consider the sparse linear system of equations
Here, A is a general square, nonsingular, n by n sparse matrix, and x and b are vectors of length n. All entries in A, x and b are of typedouble
.
Gaussian elimination, applied to the system above, can be shortly
described as follows:
1. Compute a triangular factorization .
Here, and are positive
definite diagonal matrices to equilibrate the system and
and are permutation matrices to ensure
numerical stability and preserve sparsity. L is a unit lower triangular
matrix and U is an upper triangular matrix.
2. Solve by evaluating
Class SuperLU
handles step 1 above in the solve
method if it has not been computed prior to step 2. More
precisely, before is solved the following steps
are performed:
solve
uses this information to perform the following steps:
Some of the steps mentioned above are optional. Their settings can be
controlled by the set methods of class SuperLU
.
Class SuperLU
is based on the SuperLU code written by
Demmel, Gilbert, Li et al. For more detailed explanations of the
factorization and solve steps, see the SuperLU Users' Guide (1999).
Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from U.S. Dept. of Energy)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
(1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
(3) Neither the name of Lawrence Berkeley National Laboratory, U.S. Dept. of Energy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Field Summary | |
---|---|
static int |
COLUMN_APPROXIMATE_MINIMUM_DEGREE
For column ordering, use column approximate minimum degree ordering. |
static int |
COLUMN_SCALING
Indicates that input matrix A was column scaled before factorization. |
static int |
FILL_FACTOR
A performance tuning parameter which can be adjusted via method setPerformanceTuningParameters . |
static int |
MAXIMUM_SUPERNODE_SIZE
A performance tuning parameter which can be adjusted via method setPerformanceTuningParameters . |
static int |
MINIMUM_COLUMN_DIMENSION
A performance tuning parameter which can be adjusted via method setPerformanceTuningParameters . |
static int |
MINIMUM_DEGREE_AT_A
For column ordering, use minimum degree ordering on the structure of . |
static int |
MINIMUM_DEGREE_AT_PLUS_A
For column ordering, use minimum degree ordering on the structure of . |
static int |
MINIMUM_ROW_DIMENSION
A performance tuning parameter which can be adjusted via method setPerformanceTuningParameters . |
static int |
NATURAL_ORDERING
For column ordering, use the natural ordering. |
static int |
NO_SCALING
Indicates that input matrix A was not equilibrated before factorization. |
static int |
PANEL_SIZE
A performance tuning parameter which can be adjusted via method setPerformanceTuningParameters . |
static int |
RELAXATION_PARAMETER
A performance tuning parameter which can be adjusted via method setPerformanceTuningParameters . |
static int |
ROW_AND_COLUMN_SCALING
Indicates that input matrix A was row and column scaled before factorization. |
static int |
ROW_SCALING
Indicates that input matrix A was row scaled before factorization. |
Constructor Summary | |
---|---|
SuperLU(SparseMatrix A)
Constructor for SuperLU . |
Method Summary | |
---|---|
int |
getColumnPermutationMethod()
Returns the method that will be used to permute the columns of the input matrix. |
double |
getConditionNumber()
Returns the estimate of the reciprocal condition number of the matrix A. |
double |
getDiagonalPivotThreshold()
Returns the threshold used for a diagonal entry to be an acceptable pivot. |
boolean |
getEquilibrate()
Returns the equilibration flag. |
int |
getEquilibrationMethod()
Returns information on the type of equilibration used before matrix factorization. |
double |
getForwardErrorBound()
Returns the estimated forward error bound for the solution vector. |
boolean |
getIterativeRefinement()
Returns a value specifying whether iterative refinement is to be performed or not. |
int |
getPerformanceTuningParameters(int parameter)
Returns a performance tuning parameter value. |
boolean |
getPivotGrowth()
Returns the reciprocal pivot growth factor flag. |
double |
getReciprocalPivotGrowthFactor()
Returns the reciprocal pivot growth factor. |
double |
getRelativeBackwardError()
Returns the componentwise relative backward error of the solution vector. |
boolean |
getSymmetricMode()
Returns the symmetric mode flag. |
void |
setColumnPermutationMethod(int colpermute)
Specifies how to permute the columns of the input matrix. |
void |
setDiagonalPivotThreshold(double thresh)
Specifies the threshold used for a diagonal entry to be an acceptable pivot. |
void |
setEquilibrate(boolean equilibrate)
Determines if input matrix A should be equilibrated before factorization. |
void |
setIterativeRefinement(boolean refine)
Specifies whether to perform iterative refinement. |
void |
setPerformanceTuningParameters(int parameter,
int tunedValue)
Sets performance tuning parameters. |
void |
setPivotGrowth(boolean growth)
Specifies whether to compute the reciprocal pivot growth factor. |
void |
setSymmetricMode(boolean symmetric)
Specifies whether to use the symmetric mode. |
double[] |
solve(double[] b)
Computation of the solution vector for the system . |
double[] |
solveTranspose(double[] b)
Computation of the solution vector for the system . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int COLUMN_APPROXIMATE_MINIMUM_DEGREE
public static final int COLUMN_SCALING
getEquilibrationMethod
.
public static final int FILL_FACTOR
setPerformanceTuningParameters
.
public static final int MAXIMUM_SUPERNODE_SIZE
setPerformanceTuningParameters
.
public static final int MINIMUM_COLUMN_DIMENSION
setPerformanceTuningParameters
.
public static final int MINIMUM_DEGREE_AT_A
public static final int MINIMUM_DEGREE_AT_PLUS_A
public static final int MINIMUM_ROW_DIMENSION
setPerformanceTuningParameters
.
public static final int NATURAL_ORDERING
public static final int NO_SCALING
getEquilibrationMethod
.
public static final int PANEL_SIZE
setPerformanceTuningParameters
.
public static final int RELAXATION_PARAMETER
setPerformanceTuningParameters
.
public static final int ROW_AND_COLUMN_SCALING
getEquilibrationMethod
.
public static final int ROW_SCALING
getEquilibrationMethod
.
Constructor Detail |
---|
public SuperLU(SparseMatrix A)
SuperLU
.
A
- a SparseMatrix
containing the sparse
quadratic input matrix.Method Detail |
---|
public int getColumnPermutationMethod()
int
scalar specifying how the columns
of the input matrix are to be permuted for sparsity preservation.
return value | method |
0 = NATURAL_ORDERING |
natural ordering, that is , I the identity matrix. |
1 = MINIMUM_DEGREE_AT_PLUS_A |
minimum degree ordering on the structure of |
2 = MINIMUM_DEGREE_AT_A |
minimum degree ordering on the structure of |
3 = COLUMN_APPROXIMATE_MINIMUM_DEGREE
|
column approximate minimum degree ordering |
public double getConditionNumber() throws SingularMatrixException
double
scalar containing the
reciprocal condition number of the matrix A after
equilibration and permutation of rows/columns (if done). If the return
value is less than machine precision (in particular, if the return
value = 0
), the matrix is singular to working precision.
SingularMatrixException
public double getDiagonalPivotThreshold()
double
scalar specifying the threshold used for a
diagonal entry to be an acceptable pivot.public boolean getEquilibrate()
boolean
specifying whether or not matrix A
is equilibrated before factorization. if getEquilibrate
returns true
the system is equilibrated, if
getEquilibrate
returns false
, no
equilibration is performed.public int getEquilibrationMethod()
int
value specifying the equilibration
option used.
return value | Description |
1 = NO_SCALING |
No equilibration is performed. |
2 = ROW_SCALING |
Equilibration is performed with row scaling. |
3 = COLUMN_SCALING |
Equilibration is performed with column scaling. |
4 = ROW_AND_COLUMN_SCALING |
Equilibration is performed with row and column scaling. |
public double getForwardErrorBound()
double
containing the estimated forward error bound
for the solution vector. The estimate is as
reliable as the estimate for the reciprocal condition number, and is
almost always a slight overestimate of the true error.
If iterative refinement is not used, the return value
= 1.0
.public boolean getIterativeRefinement()
boolean
scalar specifying whether
iterative refinement is to be performed, true
, or
no iterative refinement is to be performed, false
.public int getPerformanceTuningParameters(int parameter)
parameter
- an int
scalar that specifies the
parameter for which the value is to be returned.
parameter | return value description |
PANEL_SIZE |
The panel size. |
RELAXATION_PARAMETER |
The relaxation parameter to control supernode amalgamation. |
MAXIMUM_SUPERNODE_SIZE |
The maximum allowable size for a supernode. |
MINIMUM_ROW_DIMENSIONM |
The minimum row dimension to be used for 2D blocking. |
MINIMUM_COLUMN_DIMENSION |
The minimum column dimension to be used for 2D blocking. |
FILL_FACTOR |
The estimated fill factor for L and U, compared with A. |
int
specifying the current value used for the specified tuning parameter.public boolean getPivotGrowth()
boolean
specifying whether to
compute the reciprocal pivot growth factor. Returns
true if the reciprocal pivot growth factor is to be computed.public double getReciprocalPivotGrowthFactor() throws SingularMatrixException
double
scalar representing the reciprocal growth factor
If the returned value is much less than 1, the stability of the
factorization could be poor.
SingularMatrixException
public double getRelativeBackwardError()
double
containing the componentwise relative
backward error of the solution vector x
.
If iterative refinement is not used, the return value
= 1.0
.public boolean getSymmetricMode()
boolean
scalar indicating if symmetric mode
is to be used. Returns
true if symmetric mode is to be used.public void setColumnPermutationMethod(int colpermute)
colpermute
- an int
scalar specifying how to permute the columns
of the input matrix for sparsity preservation.
colpermute | method |
NATURAL_ORDERING
| natural ordering, that is , I the identity matrix. |
MINIMUM_DEGREE_AT_PLUS_A |
minimum degree ordering on the structure of |
MINIMUM_DEGREE_AT_A |
minimum degree ordering on the structure of |
COLUMN_APPROXIMATE_MINIMUM_DEGREE |
column approximate minimum degree ordering |
colpermute
is set to
SuperLU.COLUMN_APPROXIMATE_MINIMUM_DEGREE
.
IllegalArgumentException
- is thrown when colpermute
is not
one of the above values.public void setDiagonalPivotThreshold(double thresh)
thresh
- a double
scalar specifying the threshold
used for a diagonal entry to be an acceptable pivot.
thresh=1.0
, i.e. classical partial
pivoting.
IllegalArgumentException
- is thrown when thresh
is not in the interval .public void setEquilibrate(boolean equilibrate)
equilibrate
- a boolean
determining
if matrix A should be equilibrated before
the factorization.
equilibrate | action |
false |
do not equilibrate |
true |
equilibrate |
equilibrate
is set to true.public void setIterativeRefinement(boolean refine)
refine
- a boolean
specifying whether to use
iterative refinement, refine = true
, or
no iterative refinement, refine = false
.
refine = false
.public void setPerformanceTuningParameters(int parameter, int tunedValue)
parameter
- an int
scalar that specifies the
parameter to be tuned.tunedValue
- an int
scalar that specifies the
value to be used for the specified tuning parameter.
parameter | Description | Default |
PANEL_SIZE |
The panel size. | 10 |
RELAXATION_PARAMETER |
The relaxation parameter to control supernode amalgamation. | 5 |
MAXIMUM_SUPERNODE_SIZE |
The maximum allowable size for a supernode. | 100 |
MINIMUM_ROW_DIMENSION |
The minimum row dimension to be used for 2D blocking. | 200 |
MINIMUM_COLUMN_DIMENSION |
The minimum column dimension to be used for 2D blocking. | 40 |
FILL_FACTOR |
The estimated fill factor for L and U, compared with A. | 20 |
IllegalArgumentException
- is thrown when a) parameter
is not in the interval or
b) tunedValue
is not greater than zero.public void setPivotGrowth(boolean growth)
growth
- a boolean
specifying whether to
compute the reciprocal pivot growth factor.
growth | action |
false |
don't compute growth factor |
true |
compute growth factor |
growth = false
.public void setSymmetricMode(boolean symmetric)
symmetric
- a boolean
indicating if symmetric mode
is to be used. This mode should be applied if the input matrix
A is diagonally dominant or nearly so. The user should
then define a small diagonal pivot threshold (e.g. 0.0 or 0.01)
by method setDiagonalPivotThreshold
and choose an
()-based column permutation algorithm
(e.g. column permutation method
SuperLU.MINIMUM_DEGREE_AT_PLUS_A
).
symmetric | action |
false |
symmetric mode is not used |
true |
symmetric mode is used |
symmetric=false
.public double[] solve(double[] b) throws SingularMatrixException
b
- a double
vector of length n
, n
the order of input matrix A
, containing the right hand side.
double
vector containing the solution to the
system . Optionally, the solution
is improved by iterative refinement, if
setIterativeRefinement
is set to true
.
Method solve
internally first factorizes matrix A
(step 1 of the introduction) if the factorization has not been done before.
SingularMatrixException
public double[] solveTranspose(double[] b) throws SingularMatrixException
b
- a double
vector of length n
, n
the order of input matrix A
, containing the right hand side.
double
vector containing the solution to the
system . Optionally, the solution
is improved by iterative refinement, if
setIterativeRefinement
is set to true
. Method solveTranspose
internally first
factorizes matrix A (step 1 of the introduction) if the factorization
has not been done before.
SingularMatrixException
|
JMSLTM Numerical Library 5.0.1 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |