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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
use Debug;
/// Index for indexing into ODE state.
/// Trait defining an ODE solver state (i.e. the dependent variable in an ODE).
///
/// Any type implementing this trait can be used as the dependent variable in an ODE.
///
/// This crate implements this trait for the following types:
///
/// * `f64`
/// * `Vec<f64>`
/// * `linalg_traits::Mat<f64>`
/// * `nalgebra::DVector<f64>`
/// * `nalgebra::SVector<f64, N>`
/// * `nalgebra::DMatrix<f64>`
/// * `nalgebra::SMatrix<f64, R, C>`
/// * `ndarray::Array1<f64>`
/// * `ndarray::Array2<f64>`
/// * `faer::Mat<f64>`
///
/// # Note on the lack of blanket implementations
///
/// We cannot perform blanket implementations using
/// [`linalg_traits::Scalar`](https://docs.rs/linalg-traits/latest/linalg_traits/trait.Scalar.html),
/// [`linalg_traits::Vector`](https://docs.rs/linalg-traits/latest/linalg_traits/trait.Vector.html),
/// and
/// [`linalg_traits::Matrix`](https://docs.rs/linalg-traits/latest/linalg_traits/trait.Matrix.html).
/// There is nothing restricting types from implementing a combination of these three traits, so the
/// compiler will not allow blanket implementations binding to these traits to avoid any potential
/// conflicting implementations.