Skip to content

Commit

Permalink
Q computation updated #263
Browse files Browse the repository at this point in the history
  • Loading branch information
ETatuzova committed Jan 5, 2024
1 parent ebed890 commit 93afb98
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ namespace nil {
PROFILE_PLACEHOLDER_SCOPE("split_polynomial_dfs_conversion_time");

std::size_t split_polynomial_size = std::max(
(preprocessed_public_data.identity_polynomials.size() + 1) * (preprocessed_public_data.common_data.rows_amount -1 ),
(preprocessed_public_data.identity_polynomials.size() + 2) * (preprocessed_public_data.common_data.rows_amount -1 ),
(constraint_system.lookup_poly_degree_bound() + 1) * (preprocessed_public_data.common_data.rows_amount -1 )//,
);
split_polynomial_size = std::max(
Expand Down Expand Up @@ -386,7 +386,7 @@ namespace nil {
if(_is_lookup_enabled){
_commitment_scheme.append_eval_point(LOOKUP_BATCH, _proof.eval_proof.challenge);
_commitment_scheme.append_eval_point(LOOKUP_BATCH, _proof.eval_proof.challenge * _omega);
_commitment_scheme.append_eval_point(LOOKUP_BATCH, _proof.eval_proof.challenge *
_commitment_scheme.append_eval_point(LOOKUP_BATCH, _proof.eval_proof.challenge *
_omega.pow(preprocessed_public_data.common_data.usable_rows_amount));
}

Expand Down

0 comments on commit 93afb98

Please sign in to comment.