File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ use itertools::Itertools;
44pub ( 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
1815fn 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
You can’t perform that action at this time.
0 commit comments