Skip to content

Commit

Permalink
Next steps of compiled recufier
Browse files Browse the repository at this point in the history
  • Loading branch information
Sword-Smith committed Mar 6, 2024
1 parent c239620 commit af321e6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/tests_and_benchmarks/ozk/programs/recufier/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl RecufyDebug {
return;
}

pub fn _dump_xfe(thing: XFieldElement) {
pub fn dump_xfe(thing: XFieldElement) {
tasm::tasm_io_write_to_stdout___xfe(thing);

return;
Expand Down Expand Up @@ -198,6 +198,13 @@ pub fn recufy() {
ArithmeticDomain::generator_for_length(padded_height as u64);
RecufyDebug::dump_bfe(trace_domain_generator);

let ___out_of_domain_point_curr_row: Vec<XFieldElement> = Tip5WithState::sample_scalars(1);
let out_of_domain_point_curr_row: XFieldElement = ___out_of_domain_point_curr_row[0];
RecufyDebug::dump_xfe(out_of_domain_point_curr_row);
let out_of_domain_point_next_row: XFieldElement =
out_of_domain_point_curr_row * trace_domain_generator;
RecufyDebug::dump_xfe(out_of_domain_point_next_row);

// let revealed_indexed_leaves: Vec<(u32, XFieldElement)> =
// tasm::tasm_recufier_fri_verify(&mut proof_iter, fri);

Expand Down

0 comments on commit af321e6

Please sign in to comment.