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

Kynema API: /home/runner/work/kynema/kynema/kynema/src/solver/linear_solver/dss_algorithm.hpp Source File
Kynema API
A flexible multibody structural dynamics code for wind turbines
Loading...
Searching...
No Matches
dss_algorithm.hpp
Go to the documentation of this file.
1#pragma once
2#include <cstdint>
3
4namespace kynema::dss {
5
6enum class Algorithm : std::uint8_t {
8 CUDSS,
9 KLU,
10 UMFPACK,
11 SUPERLU,
13 MKL,
14 NONE,
15};
16
17} // namespace kynema::dss
Definition dss_algorithm.hpp:4
Algorithm
Definition dss_algorithm.hpp:6