mirror of
https://github.com/Z3Prover/z3
synced 2026-03-04 04:30:23 +00:00
re-organizing muz
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
add96bc98f
commit
9e61820125
20 changed files with 73 additions and 42 deletions
|
|
@ -45,6 +45,7 @@ Notes:
|
|||
#include "poly_rewriter.h"
|
||||
#include "poly_rewriter_def.h"
|
||||
#include "arith_rewriter.h"
|
||||
#include "scoped_proof.h"
|
||||
|
||||
|
||||
|
||||
|
|
@ -1072,7 +1073,7 @@ namespace pdr {
|
|||
|
||||
void hoist_non_bool_if(expr_ref& fml) {
|
||||
ast_manager& m = fml.get_manager();
|
||||
datalog::scoped_no_proof _sp(m);
|
||||
scoped_no_proof _sp(m);
|
||||
params_ref p;
|
||||
ite_hoister_star ite_rw(m, p);
|
||||
expr_ref tmp(m);
|
||||
|
|
@ -1419,7 +1420,7 @@ namespace pdr {
|
|||
|
||||
void normalize_arithmetic(expr_ref& t) {
|
||||
ast_manager& m = t.get_manager();
|
||||
datalog::scoped_no_proof _sp(m);
|
||||
scoped_no_proof _sp(m);
|
||||
params_ref p;
|
||||
arith_normalizer_star rw(m, p);
|
||||
expr_ref tmp(m);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue