summaryrefslogtreecommitdiff
path: root/src/tests/matrix_test_ops.rs
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2025-01-25 12:42:03 +0200
committerZhongheng Liu <z.liu@outlook.com.gr>2025-01-25 12:42:03 +0200
commit11665819754fd82d09a5d560e703e2968aa5538c (patch)
treedacdb660f7c4ee308990ef4cb507a6612593d1cc /src/tests/matrix_test_ops.rs
parent1fdf5e281b2e5963b6348b5d577a827c191785f9 (diff)
downloadmatrix-rs-11665819754fd82d09a5d560e703e2968aa5538c.tar.gz
matrix-rs-11665819754fd82d09a5d560e703e2968aa5538c.tar.bz2
matrix-rs-11665819754fd82d09a5d560e703e2968aa5538c.zip
feat: matrix math
mul: impl Mul for LHS: i32, RHS: Matrix trait: trait MatrixMath definition for cofactor, minors, adjoint, determinant
Diffstat (limited to 'src/tests/matrix_test_ops.rs')
-rw-r--r--src/tests/matrix_test_ops.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/matrix_test_ops.rs b/src/tests/matrix_test_ops.rs
index fe8c40d..e207c3e 100644
--- a/src/tests/matrix_test_ops.rs
+++ b/src/tests/matrix_test_ops.rs
@@ -1,6 +1,6 @@
use std::str::FromStr;
-use crate::{matrix::Matrix, error::ParseMatrixError};
+use crate::{error::ParseMatrixError, matrix::Matrix, MatrixMath};
#[test]
pub fn test_matrix_add() -> Result<(), ParseMatrixError> {