monolish
0.14.0
MONOlithic LIner equation Solvers for Highly-parallel architecture
|
none solver class(nothing to do) More...
#include <monolish_equation.hpp>
Public Member Functions | |
void | apply_precond (const vector< Float > &r, vector< Float > &z) |
void | create_precond (MATRIX &A) |
void | create_precond (matrix::LinearOperator< double > &A) |
void | create_precond (matrix::LinearOperator< float > &A) |
std::string | name () const |
get solver name "monolish::equation::none" More... | |
int | solve (MATRIX &A, vector< Float > &x, vector< Float > &b) |
Public Member Functions inherited from monolish::solver::solver< MATRIX, Float > | |
initvec_scheme | get_initvec_scheme () const |
get handling scheme of initial vector handling More... | |
int | get_lib () const |
get library option More... | |
size_t | get_maxiter () const |
get maxiter More... | |
size_t | get_miniter () const |
get miniter More... | |
bool | get_print_rhistory () const |
get print rhistory status More... | |
size_t | get_residual_method () const |
get residual method(default=0) More... | |
double | get_tol () const |
get tolerance More... | |
template<class PRECOND > | |
void | set_apply_precond (PRECOND &p) |
set precondition apply fucntion More... | |
template<class PRECOND > | |
void | set_create_precond (PRECOND &p) |
set precondition create fucntion More... | |
void | set_initvec_scheme (initvec_scheme scheme) |
set how to handle initial vector More... | |
void | set_lib (int l) |
set library option (to change library, monolish, cusolver, etc.) More... | |
void | set_maxiter (size_t max) |
set max iter. (default = SIZE_MAX) More... | |
void | set_miniter (size_t min) |
set min iter. (default = 0) More... | |
void | set_print_rhistory (bool flag) |
print rhistory to standart out true/false. (default = false) More... | |
void | set_residual_method (size_t r) |
set residual method (default=0) More... | |
void | set_rhistory_filename (std::string file) |
rhistory filename More... | |
void | set_tol (double t) |
set tolerance (default:1.0e-8) More... | |
solver () | |
create solver class More... | |
~solver () | |
delete solver class More... | |
Additional Inherited Members | |
Protected Member Functions inherited from monolish::solver::solver< MATRIX, Float > | |
Float | get_residual (vector< Float > &x) |
Protected Attributes inherited from monolish::solver::solver< MATRIX, Float > | |
initvec_scheme | initvecscheme = initvec_scheme::RANDOM |
int | lib = 0 |
size_t | maxiter = SIZE_MAX |
size_t | miniter = 0 |
precondition< MATRIX, Float > | precond |
bool | print_rhistory = false |
size_t | resid_method = 0 |
std::string | rhistory_file |
std::ostream * | rhistory_stream |
double | tol = 1.0e-8 |
none solver class(nothing to do)
Definition at line 31 of file monolish_equation.hpp.
template void monolish::equation::none< MATRIX, Float >::apply_precond | ( | const vector< Float > & | r, |
vector< Float > & | z | ||
) |
template void monolish::equation::none< MATRIX, Float >::create_precond | ( | MATRIX & | A | ) |
void monolish::equation::none< matrix::LinearOperator< double >, double >::create_precond | ( | matrix::LinearOperator< double > & | A | ) |
void monolish::equation::none< matrix::LinearOperator< float >, float >::create_precond | ( | matrix::LinearOperator< float > & | A | ) |
|
inline |
get solver name "monolish::equation::none"
Definition at line 44 of file monolish_equation.hpp.
template int monolish::equation::none< MATRIX, Float >::solve | ( | MATRIX & | A, |
vector< Float > & | x, | ||
vector< Float > & | b | ||
) |