You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I go through the code, I found Expression::IsSatisfiable has handled case for "and" and "and_kleene" function, but "or" and "or_kleene" is not support.
If it's possible, I'd like to submit the code and testing for it
Component(s)
C++
The text was updated successfully, but these errors were encountered:
…36424)
### Rationale for this change
This patch supports "or" in `Expression::IsSatisfiable`, if all it child is not satisfiable, the expression itself is not satisfiable.
### What changes are included in this PR?
Support "or" and "or_kleene" in `IsSatisfiable`
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* Closes: #36423
Lead-authored-by: mwish <maplewish117@gmail.com>
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
Signed-off-by: Antoine Pitrou <antoine@python.org>
Describe the enhancement requested
When I go through the code, I found
Expression::IsSatisfiable
has handled case for "and" and "and_kleene" function, but "or" and "or_kleene" is not support.If it's possible, I'd like to submit the code and testing for it
Component(s)
C++
The text was updated successfully, but these errors were encountered: