mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 12:53:38 +00:00
disable dt2bv for quantified variables as enum2bv does not handle them. #1092
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a9990e3a0b
commit
a3ee785923
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class dt2bv_tactic : public tactic {
|
||||||
|
|
||||||
void operator()(var * v) {
|
void operator()(var * v) {
|
||||||
if (m_t.is_fd(v)) {
|
if (m_t.is_fd(v)) {
|
||||||
m_t.m_fd_sorts.insert(get_sort(v));
|
m_t.m_non_fd_sorts.insert(get_sort(v));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue