3
0
Fork 0
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:
Nikolaj Bjorner 2020-04-14 17:33:44 -07:00
parent 7ed9996fc0
commit 835b57b775
9 changed files with 100 additions and 97 deletions

View file

@ -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;