From 17984af4cc36f142431319552ed0bbedbc39c0e1 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Tue, 11 Feb 2020 22:06:04 -0800 Subject: [PATCH] disable automatic coersion to reals Signed-off-by: Nikolaj Bjorner --- src/ast/arith_decl_plugin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ast/arith_decl_plugin.cpp b/src/ast/arith_decl_plugin.cpp index e7f96614f..4fb098e3a 100644 --- a/src/ast/arith_decl_plugin.cpp +++ b/src/ast/arith_decl_plugin.cpp @@ -561,7 +561,8 @@ void arith_decl_plugin::get_sort_names(svector& sort_names, symbol if (logic == "NRA" || logic == "QF_NRA" || logic == "QF_UFNRA") { - m_convert_int_numerals_to_real = true; + // TBD: remove completely pending regressions: + // m_convert_int_numerals_to_real = true; sort_names.push_back(builtin_name("Real", REAL_SORT)); } else {