3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 01:05:47 +00:00

fix evaluator for array store expressions

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-11-02 21:33:24 +00:00
parent 46a4bc6030
commit be9d5c7088
5 changed files with 37 additions and 3 deletions

View file

@ -33,7 +33,7 @@ namespace smt {
}
void theory_array_base::found_unsupported_op(expr * n) {
TRACE("theory_array_unsup", tout << mk_ll_pp(n, get_manager()) << "\n";);
TRACE("array", tout << mk_ll_pp(n, get_manager()) << "\n";);
if (!m_found_unsupported_op) {
get_context().push_trail(value_trail<context, bool>(m_found_unsupported_op));
m_found_unsupported_op = true;