mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
mark assumption literals to be skolem to hide them from models #2406
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4b6a7371dd
commit
5820b16800
4 changed files with 21 additions and 5 deletions
|
@ -406,6 +406,11 @@ namespace opt {
|
|||
smt::theory_rdl& th = dynamic_cast<smt::theory_rdl&>(opt);
|
||||
return th.mk_ge(m_fm, v, val);
|
||||
}
|
||||
|
||||
if (typeid(smt::theory_rdl) == typeid(opt)) {
|
||||
smt::theory_rdl& th = dynamic_cast<smt::theory_rdl&>(opt);
|
||||
return th.mk_ge(m_fm, v, val);
|
||||
}
|
||||
|
||||
if (typeid(smt::theory_dense_i) == typeid(opt) &&
|
||||
val.get_infinitesimal().is_zero()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue