/home/runner/work/kynema-fmb/kynema-fmb/kynema-fmb/src/solver/linear_solver/dss_symbolic.hpp Source File

Kynema API: /home/runner/work/kynema-fmb/kynema-fmb/kynema-fmb/src/solver/linear_solver/dss_symbolic.hpp Source File
Kynema API
A flexible multibody structural dynamics code for wind turbines
Loading...
Searching...
No Matches
dss_symbolic.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "Kynema_FMB_config.h"
4
5namespace kynema_fmb::dss {
6
7template <typename DSSHandleType, typename CrsMatrixType>
9 SymbolicFunction() = delete;
10};
11
12} // namespace kynema_fmb::dss
13
14#ifdef KYNEMA_FMB_ENABLE_CUSOLVERSP
16#endif
17
18#ifdef KYNEMA_FMB_ENABLE_CUDSS
20#endif
21
22#ifdef KYNEMA_FMB_ENABLE_MKL
23#include "dss_symbolic_mkl.hpp"
24#endif
25
26#ifdef KYNEMA_FMB_ENABLE_KLU
27#include "dss_symbolic_klu.hpp"
28#endif
29
30#ifdef KYNEMA_FMB_ENABLE_UMFPACK
32#endif
33
34#ifdef KYNEMA_FMB_ENABLE_SUPERLU
36#endif
37
38#ifdef KYNEMA_FMB_ENABLE_SUPERLU_MT
40#endif
41
42namespace kynema_fmb::dss {
43
44template <typename DSSHandleType, typename CrsMatrixType>
45void symbolic_factorization(DSSHandleType& dss_handle, CrsMatrixType& A) {
47}
48
49} // namespace kynema_fmb::dss
Definition dss_algorithm.hpp:4
void symbolic_factorization(DSSHandleType &dss_handle, CrsMatrixType &A)
Definition dss_symbolic.hpp:45
Definition dss_symbolic.hpp:8