Skip to content

Commit

Permalink
Fix parameters just for debug #83
Browse files Browse the repository at this point in the history
  • Loading branch information
ETatuzova committed Apr 28, 2024
1 parent 92d1f64 commit aaab30a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/proof-generator/include/nil/proof-generator/prover.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,13 +312,14 @@ namespace nil {
nil::crypto3::marshalling::types::make_assignment_table<Endianness, AssignmentTable>(
*marshalled_table
);

public_inputs_ = assignment_table.public_inputs();
table_description_.emplace(table_description);

// Lambdas and grinding bits should be passed threw preprocessor directives
std::size_t table_rows_log = std::ceil(std::log2(table_description_->rows_amount));

fri_params_.emplace(FriParams(1, table_rows_log, lambda_, expand_factor_));
fri_params_.emplace(FriParams(1, table_rows_log, lambda_, 2));
// fri_params_.emplace(FriParams(1, table_rows_log, lambda_, expand_factor_));
lpc_scheme_.emplace(*fri_params_);

Expand All @@ -329,8 +330,7 @@ namespace nil {
*constraint_system_,
assignment_table.move_public_table(),
*table_description_,
*lpc_scheme_,
max_quotient_chunks_
*lpc_scheme_
)
);

Expand Down

0 comments on commit aaab30a

Please sign in to comment.