forked from privacy-scaling-explorations/zkevm-circuits
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MPT review #9
Open
CeciliaZ030
wants to merge
21
commits into
Brechtpd:mpt-refactor
Choose a base branch
from
CeciliaZ030:39-mpt-review
base: mpt-refactor
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
MPT review #9
Changes from 10 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
735d2bf
constrain ext_is_key_part_odd with fixed lookup
CeciliaZ030 8c128c5
Revert "constrain ext_is_key_part_odd with fixed lookup"
CeciliaZ030 a9406b0
add lookup for RlpGadgets
CeciliaZ030 3b1318d
is_key_part_odd with lookups done
CeciliaZ030 7916dd6
added q_row and q_node to constraint state
CeciliaZ030 29bc5ce
constraint nodes
CeciliaZ030 b84d69c
added constraint for Count-th rows and non-Count-th rows && removed l…
CeciliaZ030 fd46413
Chang nibble rules 0b1_0000
CeciliaZ030 067d8b2
Chang nibble rules 0b1_0000
CeciliaZ030 84782a2
got rid of state machine and constrain q_row
CeciliaZ030 c85f09f
query_byte() with lookup
CeciliaZ030 91fee94
use isZeroGadget, add mpt_test2 for VS code debugger
CeciliaZ030 82f88b9
broken CachedRegion
CeciliaZ030 65530fc
use CachedRegion for all states
CeciliaZ030 af1e2ea
add split_expression
CeciliaZ030 ef6b4c2
added table
CeciliaZ030 fab2b3e
fixed byte lookup with a separate column
CeciliaZ030 5835c49
load_byte_table
CeciliaZ030 5ff70c1
Smarter cell manager with context
CeciliaZ030 1b8cc26
use tree-like structure to store context
CeciliaZ030 21609db
changed macros to enable CM context for _ifx and _matchx
CeciliaZ030 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is_long
seems to be missing? I think that's actually smart to only do 2 out of 3 in the lookup table because it saves a cell and you can deduce one of the three values e.g.is_long
is1 - is_short - is_very_long
, but I don't see that being done so not sure what's up? :)