HLIBpro  2.4
Public Member Functions | Public Attributes | List of all members
TLU Class Reference

Computes LU factorisation $ A = LU $. More...

#include <mat_fac.hh>

Public Member Functions

void factorise (TMatrix *A, const TTruncAcc &acc) const
 
auto eval_matrix (TMatrix *A) const -> std::unique_ptr< TLinearOperator >
 
auto inv_matrix (TMatrix *A) const -> std::unique_ptr< TLinearOperator >
 
void split (const TMatrix *A, TMatrix *&L, TMatrix *&U, const eval_type_t eval_type=CFG::Arith::eval_type) const
 
std::pair< TMatrix *, TMatrix * > split (TMatrix *A, const eval_type_t eval_type) const
 
size_t pm_steps (const TMatrix *A) const
 return number of factorisation steps for A for progress meter
 

Public Attributes

 __pad0__: _options( opts ) {} ~TLU () {} void set_options ( const fac_options_t opts ) { _options = opts
 standard constructor with optional LU settings
 

Detailed Description

This class computes the LU factorisation $A = LU$ of a matrix $A$ with lower, unit triangular matrix $L$ and upper triangular matrix $U$.

The factorisation may be either point wise, i.e. a real LU factorisation, or block wise in which case, dense diagonal matrix blocks are inverted.

Support for multiple threads is available, although the expectable speedup is limited, e.g. best suited for at most 4 threads.

Member Function Documentation

auto eval_matrix ( TMatrix A) const -> std::unique_ptr< TLinearOperator >

return suitable representation for evaluating factors L and U

Parameters
ALU factors to be represented
void factorise ( TMatrix A,
const TTruncAcc acc 
) const

compute LU factorisation of given matrix

Parameters
Aon input matrix to factorise; on output factors L and U
accaccuracy of factorisation
auto inv_matrix ( TMatrix A) const -> std::unique_ptr< TLinearOperator >

return suitable inverse representation of factors L and U

Parameters
ALU factor to be represented
void split ( const TMatrix A,
TMatrix *&  L,
TMatrix *&  U,
const eval_type_t  eval_type = CFG::Arith::eval_type 
) const

split given matrix A into individual factors L and U

Parameters
Ajoined LU factors
Lmatrix pointer to store factor L
Umatrix pointer to store factor U
eval_typedetermines block-wise or point-wise evaluation
std::pair< TMatrix *, TMatrix * > split ( TMatrix A,
const eval_type_t  eval_type 
) const

split matrix A into individual factors L and U; A is destroyed and L/U will contain the former submatrices of A