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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#[cfg(test)]
extern crate assert;
#[cfg(feature = "acceleration")]
extern crate blas;
#[cfg(feature = "acceleration")]
extern crate lapack;
extern crate num_complex;
extern crate num_traits;
pub use num_traits::Num as Number;
#[allow(non_camel_case_types)]
pub type c32 = num_complex::Complex<f32>;
#[allow(non_camel_case_types)]
pub type c64 = num_complex::Complex<f64>;
use std::convert::Into;
use std::{error, fmt};
use format::Conventional;
pub trait Matrix: Into<Conventional<<Self as Matrix>::Element>> + Size {
type Element: Element;
fn nonzeros(&self) -> usize;
fn zero<S: Size>(S) -> Self;
}
#[macro_export]
macro_rules! matrix {
($([$tail:expr,];)* -> [$($head:expr,)*]) => (
vec![$($head,)* $($tail,)*]
);
($([$middle:expr, $($tail:expr,)*];)* -> [$($head:expr,)*]) => (
matrix!($([$($tail,)*];)* -> [$($head,)* $($middle,)*])
);
($($($item:expr),*;)*) => (
matrix!($([$($item,)*];)* -> [])
);
($($($item:expr,)*;)*) => (
matrix!($([$($item,)*];)* -> [])
);
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Error(String);
pub type Result<T> = std::result::Result<T, Error>;
macro_rules! raise(
($message:expr) => (
return Err(::Error($message.to_string()));
);
);
impl fmt::Display for Error {
#[inline]
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(formatter)
}
}
impl error::Error for Error {
#[inline]
fn description(&self) -> &str {
&self.0
}
}
mod element;
mod position;
mod size;
pub use element::Element;
pub use position::Position;
pub use size::Size;
pub mod decomposition;
pub mod format;
pub mod operation;
pub mod prelude;