Skip to content

Commit 166af32

Browse files
author
maxtremblay
committed
Remove print
1 parent 6259dee commit 166af32

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/matrix/nullspace.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ use itertools::Itertools;
44
pub(super) fn nullspace(matrix: &SparseBinMat) -> SparseBinMat {
55
let echelon_form = matrix.echelon_form();
66
let (normal_form, permutation) = normal_form_from_echelon_form(&echelon_form);
7-
println!("{:?}", echelon_form);
8-
println!("{:?}", normal_form);
9-
println!("{:?}", permutation);
107
let nullspace = normal_form
118
.without_columns(&(0..matrix.number_of_rows()).collect_vec())
129
.vertical_concat_with(&SparseBinMat::identity(
@@ -17,7 +14,6 @@ pub(super) fn nullspace(matrix: &SparseBinMat) -> SparseBinMat {
1714

1815
fn normal_form_from_echelon_form(matrix: &SparseBinMat) -> (SparseBinMat, Vec<usize>) {
1916
let (swapped_echelon_form, permutation) = swap_echelon_form(matrix);
20-
println!("SWAP: {:?}", swapped_echelon_form);
2117
(reduce_to_normal_form(&swapped_echelon_form), permutation)
2218
}
2319

0 commit comments

Comments
 (0)