-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bugfix: fix bug caused by not handling mont form of stone * chore: clippy issue * feat: Add helper function for LDE calculation * chore: sync with varun's branch * feat: implement fri parameters and foler function for verifying fri * feat: implement commitment phase of fri verifier * feat: add simple test mock * feat: align domain element order with stone-prover * feat: implement part of decommitment phase * refactor: move choose_query_indices to details.rs * feat: implement verify_inner_layers * feat: implement verify_last_layer * feat: complete verification of first layer * feat: complete verification of inner layer * feat: complete verification of last layer except decommitment * feat: removed all testcode related garbage codes * feat: implemented element reordering for stone * fix: commitment phase * feat: impl compute_next_fri_layer and add tests * test: add fri layer tests * chore: fix build from merge to main * fix: apply reviews, add comments * fix: separate test code from FriVerifier struct * chore: clippy fix * fix: change argument of next_layer_element_from_two_previous_layer_elements to prevent potential unnecessary calculation * refactor: compute batch inverse * fix: resolve previous commit conflicts * fix: remove unnecessary prits * fix: resolve broken test * fix: resolve broken test * chore: remove comments --------- Co-authored-by: Varun Thakore <[email protected]>
- Loading branch information
1 parent
1d89996
commit ee27cd3
Showing
9 changed files
with
530 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ mod lde; | |
mod parameters; | ||
mod prover; | ||
mod stone_domain; | ||
mod test; | ||
mod verifier; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.