mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 07:45:46 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7ed9996fc0
commit
835b57b775
9 changed files with 100 additions and 97 deletions
|
@ -240,6 +240,10 @@ struct check_logic::imp {
|
|||
if (!m_bvs)
|
||||
fail("logic does not support bitvectors");
|
||||
}
|
||||
else if (m_dt_util.is_datatype(s)) {
|
||||
if (!m_dt)
|
||||
fail("logic does not support algebraic datatypes");
|
||||
}
|
||||
else if (m_ar_util.is_array(s)) {
|
||||
if (m_arrays) {
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue