Skip to content

Commit

Permalink
separate different sparse matrices
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanting Zhang committed Mar 28, 2024
1 parent 98e5152 commit 11bc72c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,9 @@ where
};

if write_data() {
write_arecibo_data(format!("r1cs_primary_{:?}", pp.digest()), "", &r1cs_primary);
write_arecibo_data(format!("sparse_matrices_{:?}", pp.digest()), "A", &r1cs_primary.A);
write_arecibo_data(format!("sparse_matrices_{:?}", pp.digest()), "B", &r1cs_primary.B);
write_arecibo_data(format!("sparse_matrices_{:?}", pp.digest()), "C", &r1cs_primary.C);
}

Ok(Self {
Expand Down

0 comments on commit 11bc72c

Please sign in to comment.