/home/runner/work/kynema/kynema/kynema/src/solver/linear_solver/dss_handle.hpp Source File

Kynema API: /home/runner/work/kynema/kynema/kynema/src/solver/linear_solver/dss_handle.hpp Source File
Kynema API
A flexible multibody structural dynamics code for wind turbines
Loading...
Searching...
No Matches
dss_handle.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "dss_algorithm.hpp"
4
5#include "Kynema_config.h"
6
7namespace kynema::dss {
8
9template <Algorithm>
10class Handle {
11public:
12 Handle() = delete;
13};
14} // namespace kynema::dss
15
16#ifdef Kynema_ENABLE_CUSOLVERSP
18#endif
19
20#ifdef Kynema_ENABLE_CUDSS
21#include "dss_handle_cudss.hpp"
22#endif
23
24#ifdef Kynema_ENABLE_MKL
25#include "dss_handle_mkl.hpp"
26#endif
27
28#ifdef Kynema_ENABLE_KLU
29#include "dss_handle_klu.hpp"
30#endif
31
32#ifdef Kynema_ENABLE_UMFPACK
34#endif
35
36#ifdef Kynema_ENABLE_SUPERLU
38#endif
39
40#ifdef Kynema_ENABLE_SUPERLU_MT
42#endif
Definition dss_handle.hpp:10
Definition dss_algorithm.hpp:4