Replace `Debug` by `Trace` (#7793)
authorGereon Kremer <gkremer@cs.stanford.edu>
Thu, 17 Mar 2022 18:00:56 +0000 (19:00 +0100)
committerGitHub <noreply@github.com>
Thu, 17 Mar 2022 18:00:56 +0000 (18:00 +0000)
commit8f7952bc092d252a4d0c04c87636c443536833b3
tree29fc5b0a7f8eb17f2b08f4fc4080711cb39e6892
parent169e32c8728a95128b4e78734f33d5ed53f32f1f
Replace `Debug` by `Trace` (#7793)

This PR replaces all usages of Debug() by Trace(), the same for similar methods like Debug.isOn().
Given that Debug is no longer used then, it is removed.
251 files changed:
src/base/output.cpp
src/base/output.h
src/context/cdhashmap.h
src/context/cdinsert_hashmap.h
src/context/cdlist.h
src/context/cdo.h
src/context/cdqueue.h
src/context/context.cpp
src/context/context.h
src/context/context_mm.cpp
src/decision/justify_stack.cpp
src/expr/attribute_internals.h
src/expr/dtype.cpp
src/expr/node.cpp
src/expr/node_algorithm.cpp
src/expr/node_builder.cpp
src/expr/node_builder.h
src/expr/node_manager_template.cpp
src/expr/node_manager_template.h
src/expr/symbol_table.cpp
src/expr/type_checker_template.cpp
src/expr/type_matcher.cpp
src/main/driver_unified.cpp
src/main/interactive_shell.cpp
src/main/options_template.cpp
src/options/options_handler.cpp
src/parser/antlr_input.cpp
src/parser/antlr_input.h
src/parser/antlr_line_buffered_input.cpp
src/parser/parser.cpp
src/parser/smt2/Smt2.g
src/parser/smt2/smt2.cpp
src/parser/tptp/tptp.cpp
src/preprocessing/passes/bool_to_bv.cpp
src/preprocessing/passes/bv_to_bool.cpp
src/preprocessing/passes/ite_simp.cpp
src/preprocessing/passes/learned_rewrite.cpp
src/preprocessing/passes/miplib_trick.cpp
src/preprocessing/passes/non_clausal_simp.cpp
src/preprocessing/passes/pseudo_boolean_processor.cpp
src/preprocessing/util/ite_utilities.cpp
src/proof/conv_proof_generator.cpp
src/proof/conv_seq_proof_generator.cpp
src/proof/lazy_proof_chain.cpp
src/proof/proof_checker.cpp
src/proof/proof_ensure_closed.cpp
src/proof/proof_node_manager.cpp
src/proof/proof_node_updater.cpp
src/proof/unsat_core.cpp
src/prop/cryptominisat.cpp
src/prop/minisat/core/Solver.cc
src/prop/minisat/core/Solver.h
src/prop/minisat/minisat.cpp
src/prop/minisat/simp/SimpSolver.cc
src/prop/opt_clauses_manager.cpp
src/prop/proof_cnf_stream.cpp
src/prop/proof_post_processor.cpp
src/prop/prop_engine.cpp
src/prop/prop_proof_manager.cpp
src/prop/sat_proof_manager.cpp
src/prop/theory_proxy.cpp
src/smt/expand_definitions.cpp
src/smt/model_core_builder.cpp
src/smt/process_assertions.cpp
src/smt/proof_final_callback.cpp
src/smt/proof_manager.cpp
src/smt/proof_post_processor.cpp
src/smt/solver_engine_scope.cpp
src/smt/term_formula_removal.cpp
src/smt/unsat_core_manager.cpp
src/theory/arith/approx_simplex.cpp
src/theory/arith/arith_ite_utils.cpp
src/theory/arith/arith_static_learner.cpp
src/theory/arith/attempt_solution_simplex.cpp
src/theory/arith/branch_and_bound.cpp
src/theory/arith/congruence_manager.cpp
src/theory/arith/constraint.cpp
src/theory/arith/cut_log.cpp
src/theory/arith/dio_solver.cpp
src/theory/arith/dio_solver.h
src/theory/arith/dual_simplex.cpp
src/theory/arith/error_set.cpp
src/theory/arith/fc_simplex.cpp
src/theory/arith/linear_equality.cpp
src/theory/arith/matrix.h
src/theory/arith/nl/coverings/cdcac.cpp
src/theory/arith/nl/coverings/cdcac_utils.cpp
src/theory/arith/nl/coverings/lazard_evaluation.cpp
src/theory/arith/nl/coverings_solver.cpp
src/theory/arith/nl/equality_substitution.cpp
src/theory/arith/nl/ext/constraint.cpp
src/theory/arith/nl/ext/factoring_check.cpp
src/theory/arith/nl/ext/monomial_bounds_check.cpp
src/theory/arith/nl/ext/monomial_check.cpp
src/theory/arith/nl/iand_solver.cpp
src/theory/arith/nl/nl_model.cpp
src/theory/arith/nl/nonlinear_extension.cpp
src/theory/arith/nl/pow2_solver.cpp
src/theory/arith/nl/transcendental/transcendental_solver.cpp
src/theory/arith/nl/transcendental/transcendental_state.cpp
src/theory/arith/normal_form.cpp
src/theory/arith/normal_form.h
src/theory/arith/partial_model.cpp
src/theory/arith/pp_rewrite_eq.cpp
src/theory/arith/proof_checker.cpp
src/theory/arith/rewriter/addition.cpp
src/theory/arith/simplex.cpp
src/theory/arith/soi_simplex.cpp
src/theory/arith/tableau.cpp
src/theory/arith/tableau.h
src/theory/arith/theory_arith.cpp
src/theory/arith/theory_arith_private.cpp
src/theory/arrays/array_info.cpp
src/theory/arrays/theory_arrays.cpp
src/theory/arrays/theory_arrays.h
src/theory/arrays/theory_arrays_type_rules.cpp
src/theory/atom_requests.cpp
src/theory/bags/theory_bags.cpp
src/theory/booleans/circuit_propagator.cpp
src/theory/booleans/proof_circuit_propagator.cpp
src/theory/booleans/theory_bool_rewriter.cpp
src/theory/booleans/theory_bool_type_rules.cpp
src/theory/bv/bitblast/bitblast_strategies_template.h
src/theory/bv/bv_solver_bitblast.cpp
src/theory/bv/bv_solver_bitblast_internal.cpp
src/theory/bv/theory_bv.cpp
src/theory/bv/theory_bv_rewrite_rules.h
src/theory/bv/theory_bv_rewrite_rules_constant_evaluation.h
src/theory/bv/theory_bv_rewrite_rules_core.h
src/theory/bv/theory_bv_rewrite_rules_normalization.h
src/theory/bv/theory_bv_rewrite_rules_operator_elimination.h
src/theory/bv/theory_bv_rewrite_rules_simplification.h
src/theory/bv/theory_bv_rewriter.cpp
src/theory/combination_care_graph.cpp
src/theory/datatypes/sygus_datatype_utils.cpp
src/theory/datatypes/sygus_extension.cpp
src/theory/datatypes/theory_datatypes.cpp
src/theory/datatypes/theory_datatypes.h
src/theory/datatypes/theory_datatypes_type_rules.cpp
src/theory/datatypes/theory_datatypes_utils.cpp
src/theory/datatypes/type_enumerator.cpp
src/theory/datatypes/type_enumerator.h
src/theory/fp/theory_fp.cpp
src/theory/fp/theory_fp_rewriter.cpp
src/theory/model_manager.cpp
src/theory/quantifiers/candidate_rewrite_database.cpp
src/theory/quantifiers/candidate_rewrite_filter.cpp
src/theory/quantifiers/cegqi/ceg_arith_instantiator.cpp
src/theory/quantifiers/cegqi/ceg_bv_instantiator.cpp
src/theory/quantifiers/cegqi/ceg_instantiator.cpp
src/theory/quantifiers/cegqi/inst_strategy_cegqi.cpp
src/theory/quantifiers/cegqi/vts_term_cache.cpp
src/theory/quantifiers/conjecture_generator.cpp
src/theory/quantifiers/ematching/candidate_generator.cpp
src/theory/quantifiers/ematching/ho_trigger.cpp
src/theory/quantifiers/ematching/inst_match_generator_multi.cpp
src/theory/quantifiers/ematching/inst_match_generator_simple.cpp
src/theory/quantifiers/ematching/inst_strategy_e_matching.cpp
src/theory/quantifiers/ematching/inst_strategy_e_matching_user.cpp
src/theory/quantifiers/ematching/instantiation_engine.cpp
src/theory/quantifiers/ematching/pattern_term_selector.cpp
src/theory/quantifiers/ematching/trigger.cpp
src/theory/quantifiers/equality_query.cpp
src/theory/quantifiers/extended_rewrite.cpp
src/theory/quantifiers/fmf/bounded_integers.cpp
src/theory/quantifiers/fmf/full_model_check.cpp
src/theory/quantifiers/fmf/model_builder.cpp
src/theory/quantifiers/fmf/model_engine.cpp
src/theory/quantifiers/fun_def_evaluator.cpp
src/theory/quantifiers/inst_match.cpp
src/theory/quantifiers/inst_strategy_enumerative.cpp
src/theory/quantifiers/inst_strategy_pool.cpp
src/theory/quantifiers/instantiate.cpp
src/theory/quantifiers/lazy_trie.cpp
src/theory/quantifiers/quant_conflict_find.cpp
src/theory/quantifiers/quant_conflict_find.h
src/theory/quantifiers/quant_util.cpp
src/theory/quantifiers/quantifiers_registry.cpp
src/theory/quantifiers/quantifiers_rewriter.cpp
src/theory/quantifiers/quantifiers_state.cpp
src/theory/quantifiers/sygus/cegis.cpp
src/theory/quantifiers/sygus/cegis_core_connective.cpp
src/theory/quantifiers/sygus/cegis_unif.cpp
src/theory/quantifiers/sygus/enum_stream_substitution.cpp
src/theory/quantifiers/sygus/enum_value_manager.cpp
src/theory/quantifiers/sygus/example_infer.cpp
src/theory/quantifiers/sygus/sygus_enumerator.cpp
src/theory/quantifiers/sygus/sygus_grammar_norm.cpp
src/theory/quantifiers/sygus/sygus_invariance.cpp
src/theory/quantifiers/sygus/sygus_process_conj.cpp
src/theory/quantifiers/sygus/sygus_repair_const.cpp
src/theory/quantifiers/sygus/sygus_unif.cpp
src/theory/quantifiers/sygus/sygus_unif_io.cpp
src/theory/quantifiers/sygus/sygus_unif_rl.cpp
src/theory/quantifiers/sygus/sygus_unif_strat.cpp
src/theory/quantifiers/sygus/synth_conjecture.cpp
src/theory/quantifiers/sygus/synth_engine.cpp
src/theory/quantifiers/sygus/synth_verify.cpp
src/theory/quantifiers/sygus/term_database_sygus.cpp
src/theory/quantifiers/sygus/type_info.cpp
src/theory/quantifiers/sygus_sampler.cpp
src/theory/quantifiers/term_database.cpp
src/theory/quantifiers/term_tuple_enumerator.cpp
src/theory/quantifiers/theory_quantifiers.cpp
src/theory/quantifiers/theory_quantifiers_type_rules.cpp
src/theory/quantifiers_engine.cpp
src/theory/relevance_manager.cpp
src/theory/rep_set.cpp
src/theory/sep/theory_sep.cpp
src/theory/sep/theory_sep.h
src/theory/sets/cardinality_extension.cpp
src/theory/sets/normal_form.h
src/theory/sets/theory_sets.cpp
src/theory/sets/theory_sets_private.cpp
src/theory/sets/theory_sets_rels.cpp
src/theory/shared_terms_database.cpp
src/theory/sort_inference.cpp
src/theory/strings/arith_entail.cpp
src/theory/strings/array_core_solver.cpp
src/theory/strings/base_solver.cpp
src/theory/strings/core_solver.cpp
src/theory/strings/extf_solver.cpp
src/theory/strings/infer_proof_cons.cpp
src/theory/strings/inference_manager.cpp
src/theory/strings/regexp_operation.cpp
src/theory/strings/solver_state.cpp
src/theory/strings/theory_strings.cpp
src/theory/strings/theory_strings.h
src/theory/substitutions.cpp
src/theory/term_registration_visitor.cpp
src/theory/theory.cpp
src/theory/theory_engine.cpp
src/theory/theory_engine.h
src/theory/theory_model.cpp
src/theory/theory_model_builder.cpp
src/theory/theory_preprocessor.cpp
src/theory/uf/cardinality_extension.cpp
src/theory/uf/eq_proof.cpp
src/theory/uf/equality_engine.cpp
src/theory/uf/proof_equality_engine.cpp
src/theory/uf/symmetry_breaker.cpp
src/theory/uf/symmetry_breaker.h
src/theory/uf/theory_uf.cpp
src/theory/uf/theory_uf.h
src/theory/uf/theory_uf_rewriter.cpp
src/util/resource_manager.cpp
test/unit/node/attribute_white.cpp
test/unit/parser/parser_black.cpp
test/unit/theory/theory_arith_rewriter_black.cpp
test/unit/util/datatype_black.cpp
test/unit/util/output_black.cpp