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

Improve (Not) Equals propagation #149

Open
EmirDe opened this issue Feb 11, 2025 · 0 comments
Open

Improve (Not) Equals propagation #149

EmirDe opened this issue Feb 11, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@EmirDe
Copy link
Contributor

EmirDe commented Feb 11, 2025

Currently we only propagate if there is only one unassigned variable, but this could be improved for the case with two unassigned variables. In that case, we can remove values from one variable that have no corresponding value in the other variable. For example, if the constraint boils down to x - y = 0 (x = y), then we can intersect the two domains. Similarly if the constraint is x + y = 5 with x, y \in {1, 3, 4, 5}, then the values 3 and 5 can be propagated out.

todo check https://link.springer.com/chapter/10.1007/3-540-45349-0_34

@EmirDe EmirDe added the enhancement New feature or request label Feb 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant