Skip to content

Commit

Permalink
Remove extremely minor duplication (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jun-Hee-Lee committed May 16, 2023
1 parent 1e431e2 commit e0f964c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sparse_mlpoly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,7 @@ impl SparseMatPolynomial {
let N = (0..sparse_polys.len())
.map(|i| sparse_polys[i].get_num_nz_entries())
.max()
.unwrap()
.next_power_of_two();
.unwrap();

let mut ops_row_vec: Vec<Vec<usize>> = Vec::new();
let mut ops_col_vec: Vec<Vec<usize>> = Vec::new();
Expand Down

0 comments on commit e0f964c

Please sign in to comment.