Skip to content

Commit

Permalink
fix(zk): BOOST_CHECK -> BOOST_ASSERT in non-test header
Browse files Browse the repository at this point in the history
  • Loading branch information
x-mass committed May 31, 2024
1 parent f51c36d commit 261d07e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,7 @@ namespace nil {

commitment_scheme.append_to_batch(PERMUTATION_BATCH, V_L);

BOOST_CHECK(V_L[preprocessed_data.common_data.desc.usable_rows_amount] == FieldType::value_type::one());


BOOST_ASSERT(V_L[preprocessed_data.common_data.desc.usable_rows_amount] == FieldType::value_type::one());
BOOST_ASSERT(std::accumulate(part_sizes.begin(), part_sizes.end(), 0) == sorted.size());

// Compute gs and hs products for each part
Expand Down

0 comments on commit 261d07e

Please sign in to comment.