feat: various fixes

clippy: rm unnecessary borrows
structure: move struct definitions around
tests: add unit test for matrix operations
errors: add custom error types
This commit is contained in:
Zhongheng Liu 2025-01-22 20:29:02 +02:00
commit fcf4d05b8a
Signed by: steven
GPG key ID: 805A28B071DAD84B
6 changed files with 134 additions and 43 deletions

View file

@ -1 +1,5 @@
//! Type definition crate for the program
//! Contains a Matrix definition
pub mod matrix;
pub mod matrix_err;