SenK
SenK is a C++ library for high-performance linear solvers.
senk.hpp
Go to the documentation of this file.
1
7#ifndef SENK_HPP
8#define SENK_HPP
9
10#define PRINT_RES false
11#define ITER_SYMBOL "I"
12#define TIME_SYMBOL "T"
13#define RES_SYMBOL "#"
14
15#include "senk_io.hpp"
16#include "senk_matrix.hpp"
17#include "senk_utils.hpp"
18#include "senk_graph.hpp"
19//#include "senk_blas1.hpp"
20//#include "senk_blas2.hpp"
21//#include "senk_sparse.hpp"
22#include "senk_bicgstab.hpp"
23#include "senk_gmres.hpp"
24#include "senk_gcr.hpp"
25
31#endif
The BiCGStab method is defined.
The GCR solvers are defined.
The GMRES solvers are defined.
Functions related to the graph theory are written.
Functions related to inputs and outputs are defined.
Functions related (sparse) matrices are defined.
Utility functions are defined.