00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #if !defined (octave_sparse_LU_h)
00025 #define octave_sparse_LU_h 1
00026
00027 #include "sparse-base-lu.h"
00028 #include "dSparse.h"
00029
00030 class
00031 OCTAVE_API
00032 SparseLU : public sparse_base_lu <SparseMatrix, double, SparseMatrix, double>
00033 {
00034 public:
00035
00036 SparseLU (void)
00037 : sparse_base_lu <SparseMatrix, double, SparseMatrix, double> () { }
00038
00039 SparseLU (const SparseMatrix& a, const Matrix& piv_thres = Matrix(),
00040 bool scale = false);
00041
00042 SparseLU (const SparseMatrix& a, const ColumnVector& Qinit,
00043 const Matrix& piv_thres = Matrix(), bool scale = false,
00044 bool FixedQ = false, double droptol = -1.,
00045 bool milu = false, bool udiag = false);
00046
00047 SparseLU (const SparseLU& a)
00048 : sparse_base_lu <SparseMatrix, double, SparseMatrix, double> (a) { }
00049
00050 SparseLU& operator = (const SparseLU& a)
00051 {
00052 if (this != &a)
00053 sparse_base_lu <SparseMatrix, double, SparseMatrix, double>
00054 :: operator = (a);
00055
00056 return *this;
00057 }
00058
00059 ~SparseLU (void) { }
00060 };
00061
00062 #endif
00063
00064
00065
00066
00067
00068