TBCI Numerical high perf. C++ Library 2.8.0
matsolverlib.cc
Go to the documentation of this file.
1
6/* $Id: matsolverlib.cc,v 1.6.2.6 2019/05/28 11:13:02 garloff Exp $ */
7
8#ifndef NUM
9# define NUM double
10#endif
11
12#include "tbci/matrix.h"
13#ifdef PRAGMA_I
14# pragma implementation "gauss_jordan.h"
15#endif
16#include "tbci/solver/gauss_jordan.h"
17#ifdef PRAGMA_I
18# pragma implementation "lu_solver.h"
19#endif
20#include "tbci/solver/lu_solver.h"
21#ifdef PRAGMA_I
22# pragma implementation "svd_solver.h"
23#endif
24#include "tbci/solver/svd_solver.h"
25
26//NAMESPACE_TBCI
27
28#define T NUM
29#include "gauss_jordan_inst.h"
30#include "lu_solver_inst.h"
31#define MAT TBCI__ Matrix < NUM >
32#define VEC TBCI__ Vector < NUM >
33#include "svd_solver_inst.h"
34
35//NAMESPACE_END
36