3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-03 16:37:59 -07:00
parent 0b856638e9
commit 426e4cc75c
65 changed files with 135 additions and 146 deletions

View file

@ -207,7 +207,7 @@ public:
s().display(tout << m_asms << "\n") << "\n";
display(tout););
is_sat = check_sat_hill_climb(m_asms);
if (m.canceled()) {
if (!m.inc()) {
return l_undef;
}
switch (is_sat) {
@ -247,7 +247,7 @@ public:
if (is_sat != l_true) return is_sat;
while (m_lower < m_upper) {
is_sat = check_sat_hill_climb(m_asms);
if (m.canceled()) {
if (!m.inc()) {
return l_undef;
}
switch (is_sat) {
@ -862,7 +862,7 @@ public:
tout << "other solver\n";
s().display(tout);
);
VERIFY(is_sat == l_false || m.canceled());
VERIFY(is_sat == l_false || !m.inc());
}
void verify_assumptions() {