NUMCXX  0.13.20181108
Numerical library for small projects and teaching purposes
numcxx.hxx
Go to the documentation of this file.
1 #ifndef NUMCXX_HXX
16 #define NUMCXX_HXX
17 
19 namespace numcxx
20 {
21  using index= unsigned int;
22 }
23 
24 #include "expression.ixx"
25 #include "tarray.hxx"
26 #include "tarray1.hxx"
27 #include "tarray2.hxx"
28 #include "tmatrix.hxx"
29 #include "tsparsematrix.hxx"
30 #include "tsolver-lapacklu.hxx"
31 #include "tsolver-umfpack.hxx"
32 #include "tprecon-jacobi.hxx"
33 #include "tprecon-ilu.hxx"
34 #include "util.hxx"
35 
36 namespace numcxx
37 {
48 }
49 
50 
51 #endif
52 
Header for ILU preconditioner.
Jacobi preconditioner class.
Implementation of expression templates.
Sparse matrix class using CRS storage scheme.
Header for class numcxx::TSolverUMFPACK.
Header for numcxx::TMatrix.
Header for numcxx::TArray1.
Header for numcxx::TSolverLapackLU.
ILU preconditioner class.
Definition: tprecon-ilu.hxx:16
unsigned int index
Definition: numcxx.hxx:21
Header for class numcxx::TSparseMatrix.
One dimensional array class.
Definition: tarray1.hxx:31
Dense matrix class.
Definition: tmatrix.hxx:38
Lapack LU factorization class.
Numcxx template library.
Definition: expression.ixx:41
Bridge class for using umfpack as solver for vmatrix.
Header for numcxx::TArray2.
Two-dimensional array class.
Definition: tarray2.hxx:31
Header for numcxx::TArray.