mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 05:41:23 +00:00
undo model evaluation to BR_FULL pending regression in assertion violation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c454b81b2c
commit
b97d694e5e
1 changed files with 2 additions and 1 deletions
|
@ -118,7 +118,8 @@ struct evaluator_cfg : public default_rewriter_cfg {
|
||||||
expr * val = m_model.get_const_interp(f);
|
expr * val = m_model.get_const_interp(f);
|
||||||
if (val != 0) {
|
if (val != 0) {
|
||||||
result = val;
|
result = val;
|
||||||
return m().is_value(val)?BR_DONE:BR_REWRITE_FULL;
|
return BR_DONE;
|
||||||
|
// return m().is_value(val)?BR_DONE:BR_REWRITE_FULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_model_completion) {
|
if (m_model_completion) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue