deleted the println used for debugging

This commit is contained in:
2025-10-29 15:14:20 -06:00
parent 1d8accc626
commit b68c9d9c06

View File

@@ -214,7 +214,6 @@ impl<
x = i + 1; x = i + 1;
while x < trig_matrix.rows { while x < trig_matrix.rows {
let m = *trig_matrix.get(x, i) / pivot; let m = *trig_matrix.get(x, i) / pivot;
println!("m = {m}");
let new_row = trig_matrix let new_row = trig_matrix
.get_row(x) .get_row(x)
.iter() .iter()
@@ -229,7 +228,6 @@ impl<
// YES, now we got ourselves a triangular matrix, now we just // YES, now we got ourselves a triangular matrix, now we just
// take the product of the diagonal and multiply by sign, that's // take the product of the diagonal and multiply by sign, that's
// the determinant :) // the determinant :)
println!("{trig_matrix}");
let determinant = sign * trig_matrix.get_diagonal().iter().copied().product::<T>(); let determinant = sign * trig_matrix.get_diagonal().iter().copied().product::<T>();
return determinant; return determinant;