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
use attribute::{
Order,
};
pub mod ll;
pub mod ops;
pub trait Matrix<T> {
fn lead_dim(&self) -> i32 {
match self.order() {
Order::RowMajor => self.cols(),
Order::ColMajor => self.rows(),
}
}
fn order(&self) -> Order { Order::RowMajor }
fn rows(&self) -> i32;
fn cols(&self) -> i32;
unsafe fn as_ptr(&self) -> *const T;
unsafe fn as_mut_ptr(&mut self) -> *mut T;
}
pub trait BandMatrix<T>: Matrix<T> {
fn sub_diagonals(&self) -> i32;
fn sup_diagonals(&self) -> i32;
}
#[cfg(test)]
mod test_struct {
use matrix::Matrix;
impl<T> Matrix<T> for (i32, i32, Vec<T>) {
fn rows(&self) -> i32 {
self.0
}
fn cols(&self) -> i32 {
self.1
}
#[inline]
unsafe fn as_ptr(&self) -> *const T {
self.2[..].as_ptr()
}
#[inline]
unsafe fn as_mut_ptr(&mut self) -> *mut T {
(&mut self.2[..]).as_mut_ptr()
}
}
}