MyraMath
Classes
SparseLUSolver.h File Reference

Sparse direct solver suitable for symmetric-pattern nonsymmetric-value A. More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
#include <myramath/jobgraph/JobGraph.h>
#include <myramath/multifrontal/Options.h>
#include <myramath/multifrontal/lu/Kernel.h>
#include <myramath/multifrontal/detail/lu/LUContainer.h>
#include <vector>
Include dependency graph for SparseLUSolver.h:

Go to the source code of this file.

Classes

class  myra::LUKernel< Number >
 Factors A into L*U, presents solve methods. More...
 
class  myra::SparseMatrix< Number >
 Stores an IxJ matrix A in compressed sparse column format. More...
 
class  myra::CSparseMatrixRange< Number >
 Represents a const SparseMatrixRange. More...
 
class  myra::Matrix< Number >
 Tabulates an IxJ matrix. Allows random access, has column major layout to be compatible with BLAS/LAPACK. More...
 
class  myra::MatrixRange< Number >
 Represents a mutable MatrixRange. More...
 
class  myra::CMatrixRange< Number >
 Represents a const MatrixRange. More...
 
class  myra::Vector< Number >
 Tabulates a vector of length N, allows random access. More...
 
class  myra::VectorRange< Number >
 Represents a mutable VectorRange. More...
 
class  myra::CVectorRange< Number >
 Represents a const VectorRange. More...
 
class  myra::SparseLUSolver< Number >
 Sparse direct solver suitable for symmetric-pattern nonsymmetric-valued A. More...
 
class  myra::ReflectNumber< SparseLUSolver< Number > >
 ReflectNumber for SparseLUSolver. More...
 

Functions

Vector< NumberS > myra::operator* (const SparseLUSolver< NumberS > &solver, const CVectorRange< NumberS > &x)
 Overloads SparseLUSolver*x, delegates to .refine() under the hood.
 
Vector< NumberD > myra::operator* (const SparseLUSolver< NumberD > &solver, const CVectorRange< NumberD > &x)
 Overloads SparseLUSolver*x, delegates to .refine() under the hood.
 
Vector< NumberC > myra::operator* (const SparseLUSolver< NumberC > &solver, const CVectorRange< NumberC > &x)
 Overloads SparseLUSolver*x, delegates to .refine() under the hood.
 
Vector< NumberZ > myra::operator* (const SparseLUSolver< NumberZ > &solver, const CVectorRange< NumberZ > &x)
 Overloads SparseLUSolver*x, delegates to .refine() under the hood.
 
Matrix< NumberS > myra::operator* (const SparseLUSolver< NumberS > &solver, const CMatrixRange< NumberS > &X)
 Overloads SparseLUSolver*X, delegates to .refine() under the hood.
 
Matrix< NumberD > myra::operator* (const SparseLUSolver< NumberD > &solver, const CMatrixRange< NumberD > &X)
 Overloads SparseLUSolver*X, delegates to .refine() under the hood.
 
Matrix< NumberC > myra::operator* (const SparseLUSolver< NumberC > &solver, const CMatrixRange< NumberC > &X)
 Overloads SparseLUSolver*X, delegates to .refine() under the hood.
 
Matrix< NumberZ > myra::operator* (const SparseLUSolver< NumberZ > &solver, const CMatrixRange< NumberZ > &X)
 Overloads SparseLUSolver*X, delegates to .refine() under the hood.
 

Detailed Description

Sparse direct solver suitable for symmetric-pattern nonsymmetric-value A.