3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-22 19:17:53 +00:00

adding lookahead mode to arithmetic sls solver

This commit is contained in:
Nikolaj Bjorner 2025-01-11 15:47:17 -08:00
parent 847278fba8
commit d97bd48669
7 changed files with 575 additions and 207 deletions

View file

@ -72,6 +72,10 @@ namespace sls {
APPLY_BOTH(initialize());
}
void arith_plugin::start_propagation() {
WITH_FALLBACK(start_propagation());
}
void arith_plugin::propagate_literal(sat::literal lit) {
WITH_FALLBACK(propagate_literal(lit));
}