mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
remove print
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
72130ac7b9
commit
22166d0760
|
@ -159,11 +159,17 @@ void func_interp::insert_entry(expr * const * args, expr * r) {
|
|||
void func_interp::insert_new_entry(expr * const * args, expr * r) {
|
||||
reset_interp_cache();
|
||||
CTRACE("func_interp_bug", get_entry(args) != 0,
|
||||
tout << "Old: " << mk_ismt2_pp(get_entry(args)->m_result, m_manager) << "\n";
|
||||
tout << "Args:";
|
||||
for (unsigned i = 0; i < m_arity; i++) {
|
||||
tout << mk_ismt2_pp(get_entry(args)->get_arg(i), m_manager) << "\n";
|
||||
}
|
||||
tout << "New: " << mk_ismt2_pp(r, m_manager) << "\n";
|
||||
tout << "Args:";
|
||||
for (unsigned i = 0; i < m_arity; i++) {
|
||||
tout << mk_ismt2_pp(args[i], m_manager) << "\n";
|
||||
}
|
||||
tout << "Old: " << mk_ismt2_pp(get_entry(args)->m_result, m_manager) << "\n";
|
||||
tout << "New: " << mk_ismt2_pp(r, m_manager) << "\n";);
|
||||
);
|
||||
SASSERT(get_entry(args) == 0);
|
||||
func_entry * new_entry = func_entry::mk(m_manager, m_arity, args, r);
|
||||
if (!new_entry->args_are_values())
|
||||
|
|
|
@ -117,7 +117,6 @@ namespace opt {
|
|||
|
||||
void optsmt::update_lower(unsigned idx, rational const& r) {
|
||||
inf_eps v(r);
|
||||
std::cout << "update lower: " << r << "\n";
|
||||
if (m_lower[idx] < v) {
|
||||
m_lower[idx] = v;
|
||||
if (m_s) m_s->get_model(m_model);
|
||||
|
|
Loading…
Reference in a new issue