mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 20:50:50 +00:00
fix datatype occurs check bug reported by Gerhard Schellhorn
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f2e636c598
commit
442e47dfce
6 changed files with 40 additions and 25 deletions
|
@ -263,7 +263,7 @@ namespace smt {
|
|||
for (unsigned i = 0; i < sz; i++) {
|
||||
expr * n = m_b_internalized_stack.get(i);
|
||||
bool_var v = get_bool_var_of_id(n->get_id());
|
||||
out << "(#" << n->get_id() << " -> p!" << v << ") ";
|
||||
out << "(#" << n->get_id() << " -> " << literal(v, false) << ") ";
|
||||
}
|
||||
out << "\n";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue