mirror of
https://github.com/Z3Prover/z3
synced 2025-11-02 20:47:52 +00:00
remove simplify dependencies
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b16a4ac452
commit
2897b98ed2
23 changed files with 62 additions and 80 deletions
|
|
@ -318,7 +318,7 @@ lbool virtual_solver::check_sat_core(unsigned num_assumptions,
|
|||
stopwatch sw2;
|
||||
smt::kernel kernel(m, p);
|
||||
for (unsigned i = 0, sz = m_context.size(); i < sz; ++i)
|
||||
{ kernel.assert_expr(m_context.get_formulas()[i]); }
|
||||
{ kernel.assert_expr(m_context.get_formula(i)); }
|
||||
sw2.start();
|
||||
kernel.check(num_assumptions, assumptions);
|
||||
sw2.stop();
|
||||
|
|
@ -450,7 +450,7 @@ void virtual_solver::to_smt2_benchmark(std::ostream &out,
|
|||
|
||||
|
||||
for (unsigned i = 0, sz = context.size(); i < sz; ++i) {
|
||||
asserts.push_back(context.get_formulas()[i]);
|
||||
asserts.push_back(context.get_formula(i));
|
||||
pp.collect(asserts.back());
|
||||
}
|
||||
pp.collect(num_assumptions, assumptions);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue