3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

Added array index/element sort detection to static_features

This commit is contained in:
Christoph M. Wintersteiger 2015-02-09 13:41:45 +00:00
parent 0a22f1e0f5
commit 3a8a62fc4c
3 changed files with 31 additions and 1 deletions

View file

@ -830,7 +830,10 @@ namespace smt {
tout << "is_arith: " << is_arith(st) << "\n";
tout << "has UF: " << st.has_uf() << "\n";
tout << "has real: " << st.m_has_real << "\n";
tout << "has int: " << st.m_has_int << "\n";);
tout << "has int: " << st.m_has_int << "\n";
tout << "has bv: " << st.m_has_bv << "\n";
tout << "has fpa: " << st.m_has_fpa << "\n";
tout << "has arrays: " << st.m_has_arrays << "\n";);
if (st.num_non_uf_theories() == 0) {
setup_QF_UF(st);