3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 00:18:45 +00:00

delay evaluation of model, throttle propagation, introduce LUT results into cutset

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-05 12:33:42 -08:00
parent 7b2f6791bc
commit 2d59b81353
14 changed files with 112 additions and 84 deletions

View file

@ -132,7 +132,7 @@ namespace smt {
return m_kernel.find_mutexes(vars, mutexes);
}
void get_model(model_ref & m) const {
void get_model(model_ref & m) {
m_kernel.get_model(m);
}
@ -315,7 +315,7 @@ namespace smt {
return m_imp->find_mutexes(vars, mutexes);
}
void kernel::get_model(model_ref & m) const {
void kernel::get_model(model_ref & m) {
m_imp->get_model(m);
}