Skip to content

Commit

Permalink
Fix creation of FRI params.
Browse files Browse the repository at this point in the history
  • Loading branch information
martun authored and AndreyMlashkin committed Nov 27, 2024
1 parent 62552c7 commit 277d74f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions crypto3/benchmarks/zk/lpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,12 @@ void lpc_test_case(std::size_t steps)
math::calculate_domain_set<FieldType>(extended_log, r);

typename fri_type::params_type fri_params(
d - 1,
D,
generate_random_step_list(r, steps),
steps,
r,
lambda
lambda,
2, //expand_factor
true, // use_grinding
12 // grinding_parameter
);

using lpc_scheme_type = nil::crypto3::zk::commitments::lpc_commitment_scheme<lpc_type, math::polynomial<typename FieldType::value_type>>;
Expand Down

0 comments on commit 277d74f

Please sign in to comment.