3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 06:15:46 +00:00

forbidden intervals fixes

This commit is contained in:
Jakob Rath 2021-09-14 10:15:10 +02:00
parent 43fef8e8ba
commit d36a658139
3 changed files with 14 additions and 5 deletions

View file

@ -51,6 +51,9 @@ namespace polysat {
void push(inequality const& i) {
push(i.as_signed_constraint());
}
/// Push a new constraint. Allocates a boolean variable for the constraint, if necessary.
void push_new(signed_constraint c);
using const_iterator = decltype(m_literals)::const_iterator;
const_iterator begin() const { return m_literals.begin(); }