mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 04:56:03 +00:00
move bound_manager to simplifiers, add bound manager to extract_eqs for solve-eqs #6532
This commit is contained in:
parent
e5e16268cc
commit
25b0b1430c
17 changed files with 86 additions and 59 deletions
|
@ -17,7 +17,7 @@ Revision History:
|
|||
|
||||
--*/
|
||||
#include "tactic/tactical.h"
|
||||
#include "tactic/arith/bound_manager.h"
|
||||
#include "ast/simplifiers/bound_manager.h"
|
||||
#include "ast/rewriter/th_rewriter.h"
|
||||
#include "ast/for_each_expr.h"
|
||||
#include "ast/converters/generic_model_converter.h"
|
||||
|
@ -197,7 +197,8 @@ class lia2pb_tactic : public tactic {
|
|||
return;
|
||||
}
|
||||
|
||||
m_bm(*g);
|
||||
for (unsigned i = 0; i < g->size(); ++i)
|
||||
m_bm(g->form(i), g->dep(i), g->pr(i));
|
||||
|
||||
TRACE("lia2pb", m_bm.display(tout););
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue