3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 17:50:23 +00:00

fixes to cuts

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-21 18:06:51 -08:00
parent 7d8b56027f
commit dcd4fff284
18 changed files with 75 additions and 50 deletions

View file

@ -57,7 +57,7 @@ class bit_blaster_tactic : public tactic {
if (proofs_enabled && m_blast_quant)
throw tactic_exception("quantified variable blasting does not support proof generation");
tactic_report report("bit-blaster", *g);
tactic_report report("bit-blast", *g);
TRACE("before_bit_blaster", g->display(tout););
m_num_steps = 0;

View file

@ -184,7 +184,7 @@ public:
m_mc = nullptr;
unsigned num_reduced = 0;
{
tactic_report report("bv-size-reduction", g);
tactic_report report("reduce-bv-size", g);
collect_bounds(g);
// create substitution

View file

@ -431,10 +431,10 @@ void goal::display_ll(std::ostream & out) const {
/**
\brief Assumes that the formula is already in CNF.
*/
void goal::display_dimacs(std::ostream & out) const {
void goal::display_dimacs(std::ostream & out, bool include_names) const {
expr_ref_vector fmls(m());
get_formulas(fmls);
::display_dimacs(out, fmls);
::display_dimacs(out, fmls, include_names);
}
unsigned goal::num_exprs() const {

View file

@ -137,7 +137,7 @@ public:
void display(std::ostream & out) const;
void display_ll(std::ostream & out) const;
void display_as_and(std::ostream & out) const;
void display_dimacs(std::ostream & out) const;
void display_dimacs(std::ostream & out, bool include_names) const;
void display_with_dependencies(ast_printer & prn, std::ostream & out) const;
void display_with_dependencies(ast_printer_context & ctx) const;
void display_with_dependencies(std::ostream & out) const;