3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-11 02:08:07 +00:00

add sequential option for SLS, fixes to import/export methods SLS<->SMT

This commit is contained in:
Nikolaj Bjorner 2024-11-14 21:43:26 -08:00
parent 6a9d5910cb
commit 8e3b9f6686
16 changed files with 224 additions and 63 deletions

View file

@ -2016,9 +2016,13 @@ namespace sls {
w = mk_term(e);
num_t n;
if (!is_num(v, n))
try {
if (!is_num(v, n))
return false;
}
catch (overflow_exception const&) {
return false;
// verbose_stream() << "set value " << w << " " << mk_bounded_pp(e, m) << " " << n << " " << value(w) << "\n";
}
if (n == value(w))
return true;
return update(w, n);