Morpheus 1.0.0
Dynamic matrix type and algorithms for sparse matrices
Loading...
Searching...
No Matches
Morpheus_MatrixOptions.hpp
1
24#ifndef MORPHEUS_MATRIXOPTIONS_HPP
25#define MORPHEUS_MATRIXOPTIONS_HPP
26
27namespace Morpheus {
28
29typedef enum {
30 MATSTR_NONE = 0,
31 MATSTR_SYMMETRIC = 1,
32 MATSTR_STRUCTURALLY_SYMMETRIC = 2,
33 MATSTR_HERMITIAN = 3,
34 MATSTR_SPD = 4,
35} MatrixStructure;
36
37typedef enum {
38 MATOPT_NONE = 0,
39 MATOPT_SHORT_ROWS = 1,
40} MatrixOptions;
41
42} // namespace Morpheus
43
44#endif // MORPHEUS_MATRIXOPTIONS_HPP
Generic Morpheus interfaces.
Definition: dummy.cpp:24