mirror of
https://github.com/Z3Prover/z3
synced 2025-05-10 09:15:47 +00:00
remove python_install target from all
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2a0bbad524
commit
34a0d7dfed
8 changed files with 23 additions and 22 deletions
|
@ -289,9 +289,9 @@ namespace smt {
|
|||
void arith_eq_adapter::restart_eh() {
|
||||
context & ctx = get_context();
|
||||
TRACE("arith_eq_adapter", tout << "restart\n";);
|
||||
svector<enode_pair> tmp(m_restart_pairs);
|
||||
svector<enode_pair>::iterator it = tmp.begin();
|
||||
svector<enode_pair>::iterator end = tmp.end();
|
||||
enode_pair_vector tmp(m_restart_pairs);
|
||||
enode_pair_vector::iterator it = tmp.begin();
|
||||
enode_pair_vector::iterator end = tmp.end();
|
||||
m_restart_pairs.reset();
|
||||
for (; it != end && !ctx.inconsistent(); ++it) {
|
||||
TRACE("arith_eq_adapter", tout << "creating arith_eq_adapter axioms at the base level #" << it->first->get_owner_id() << " #" <<
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue