From b68c9d9c065eaff4124878bb7383eda319b7771c Mon Sep 17 00:00:00 2001 From: LaEntropiaa Date: Wed, 29 Oct 2025 15:14:20 -0600 Subject: [PATCH] deleted the println used for debugging --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 08e7334..f555a25 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -214,7 +214,6 @@ impl< x = i + 1; while x < trig_matrix.rows { let m = *trig_matrix.get(x, i) / pivot; - println!("m = {m}"); let new_row = trig_matrix .get_row(x) .iter() @@ -229,7 +228,6 @@ impl< // YES, now we got ourselves a triangular matrix, now we just // take the product of the diagonal and multiply by sign, that's // the determinant :) - println!("{trig_matrix}"); let determinant = sign * trig_matrix.get_diagonal().iter().copied().product::(); return determinant;