Skip to content

Commit

Permalink
fixed debug typos #18
Browse files Browse the repository at this point in the history
  • Loading branch information
vo-nil committed Oct 30, 2023
1 parent 2c7efa0 commit c1c33e8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/systems/plonk/placeholder/placeholder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -622,11 +622,9 @@ ACTOR_THREAD_TEST_CASE(permutation_argument_test) {
for (int i = 0; i < argument_size; i++) {
BOOST_CHECK(prover_res.F_dfs[i].evaluate(y) == verifier_res[i]);
for (std::size_t j = 0; j < desc.rows_amount; j++) {
if(prover_res.F_dfs[i].evaluate(preprocessed_public_data.common_data.basic_domain->get_domain_element(j)) != 0){
BOOST_CHECK(
prover_res.F_dfs[i].evaluate(preprocessed_public_data.common_data.basic_domain->get_domain_element(j)) == field_type::value_type::zero()
);
}
BOOST_CHECK(
prover_res.F_dfs[i].evaluate(preprocessed_public_data.common_data.basic_domain->get_domain_element(j)) == field_type::value_type::zero()
);
}
}
}
Expand Down

0 comments on commit c1c33e8

Please sign in to comment.