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

✨ common clauses in disjunctions (Boolean Factorization) #1988

Open
joocer opened this issue Sep 7, 2024 · 0 comments
Open

✨ common clauses in disjunctions (Boolean Factorization) #1988

joocer opened this issue Sep 7, 2024 · 0 comments

Comments

@joocer
Copy link
Contributor

joocer commented Sep 7, 2024

Promote common parts of disjunctions to reduce the evaluation effort

WHERE (
A = B AND C = D
)
OR
(
A = B AND E = F
)

=>

WHERE (
A = B
)
AND
(
E = F OR C = D
)

@joocer joocer changed the title ✨ common clauses in disjunctions ✨ common clauses in disjunctions (Boolean Factorization) Sep 7, 2024
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

No branches or pull requests

1 participant