dsalgo/static_matrix_property_frequent.rs
1use crate::{
2 matrix_with_static_property::Matrix,
3 static_square_matrix_property_trait::Size,
4};
5
6#[derive(Debug, Clone)]
7
8pub struct Prop100;
9
10impl Size for Prop100 {
11 fn size() -> usize {
12 100
13 }
14}
15
16pub type Mat100<T> = Matrix<T, Prop100>;
17
18#[cfg(test)]
19
20mod tests {
21
22 #[test]
23
24 fn test() {}
25}