MyraMath
Classes
SparseZLDLTSolver.h File Reference

Sparse direct solver suitable for complex symmetric systems. More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
#include <myramath/jobgraph/JobGraph.h>
#include <myramath/multifrontal/Options.h>
#include <myramath/multifrontal/zldlt/Kernel.h>
#include <myramath/multifrontal/detail/llt/LContainer.h>
#include <vector>
Include dependency graph for SparseZLDLTSolver.h:

Go to the source code of this file.

Classes

class  myra::ZLDLTKernel< Precision >
 Factors A into L*L', presents solve methods. More...
 
class  myra::SparseMatrix< Number >
 Stores an IxJ matrix A in compressed sparse column format. More...
 
class  myra::SparseMatrixRange< Number >
 Represents a mutable SparseMatrixRange. 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::LowerMatrix< Number >
 Stores a lower triangular matrix in rectangular packed format. More...
 
class  myra::LowerMatrixRange< Number >
 Represents a mutable LowerMatrixRange. More...
 
class  myra::CLowerMatrixRange< Number >
 Represents a const LowerMatrixRange. More...
 
class  myra::SparseZLDLTSolver< Precision >
 Sparse direct solver suitable for complex symmetric systems. More...
 
class  myra::ReflectNumber< SparseZLDLTSolver< Precision > >
 ReflectNumber for SparseZLDLTSolver. More...
 

Functions

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

Detailed Description

Sparse direct solver suitable for complex symmetric systems.