3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-05 09:37:44 +00:00

fixes to sls

This commit is contained in:
Nikolaj Bjorner 2024-07-27 03:29:54 +02:00
parent 5e62984178
commit fce21981c6
16 changed files with 521 additions and 80 deletions

View file

@ -110,6 +110,10 @@ namespace sls {
WITH_FALLBACK(repair_up(e));
}
void arith_plugin::repair_literal(sat::literal lit) {
WITH_FALLBACK(repair_literal(lit));
}
void arith_plugin::set_value(expr* e, expr* v) {
WITH_FALLBACK(set_value(e, v));
}