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:
parent
7d8b56027f
commit
dcd4fff284
18 changed files with 75 additions and 50 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue