-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmatrices.hpp
More file actions
73 lines (58 loc) · 1.18 KB
/
matrices.hpp
File metadata and controls
73 lines (58 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#pragma once
#include <cstdlib>
namespace binsparse {
struct row_major {
constexpr bool operator==(row_major) {
return true;
}
template <typename T>
constexpr bool operator==(T&&) {
return false;
}
};
struct column_major {
constexpr bool operator==(column_major) {
return true;
}
template <typename T>
constexpr bool operator==(T&&) {
return false;
}
};
enum structure_t { general, symmetric, skew_symmetric, hermitian };
template <typename T, typename I>
struct csr_matrix {
T* values;
I* colind;
I* row_ptr;
I m, n, nnz;
structure_t structure = general;
bool is_iso = false;
};
template <typename T, typename I>
struct csc_matrix {
T* values;
I* rowind;
I* col_ptr;
I m, n, nnz;
structure_t structure = general;
bool is_iso = false;
};
template <typename T, typename I>
struct coo_matrix {
T* values;
I* rowind;
I* colind;
I m, n, nnz;
structure_t structure = general;
bool is_iso = false;
};
template <typename T, typename I = std::size_t, typename Order = row_major>
struct dense_matrix {
T* values;
I m, n;
structure_t structure = general;
using order = Order;
bool is_iso = false;
};
} // namespace binsparse