Skip to content
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

Experimental pattern matching #36

Closed
wants to merge 15 commits into from
Closed

Conversation

NaC-L
Copy link
Owner

@NaC-L NaC-L commented Aug 23, 2024

On top of lifter-is-a-class (explanation of changes in experimental) :

1-

x = select z, a, b
y = add x, 1

will be "simplified" to

x = select z, a, b
y = select z, a+1, b+1

, so we can track values easier
2- (a & b ) | (~a & c) will be simplified to select a, b, c

3- calculate possible values with brute forcing

@NaC-L NaC-L closed this Aug 23, 2024
@NaC-L NaC-L deleted the experimental-pattern-matcihng branch August 23, 2024 14:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant