mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 00:26:38 +00:00
Merge branch 'master' into nlsat-solver-stack
This commit is contained in:
commit
d263714df8
2 changed files with 3 additions and 5 deletions
|
@ -613,7 +613,7 @@ namespace sat {
|
|||
out << ci.m_num_trues << " " << ci.m_weight << "\n";
|
||||
}
|
||||
for (unsigned v = 0; v < num_vars(); ++v) {
|
||||
out << v << ": " << reward(v) << "\n";
|
||||
out << v << ": rw " << reward(v) << "\n";
|
||||
}
|
||||
out << "unsat vars: ";
|
||||
for (bool_var v : m_unsat_vars) {
|
||||
|
|
|
@ -214,10 +214,8 @@ class fix_dl_var_tactic : public tactic {
|
|||
|
||||
app * operator()(goal const & g) {
|
||||
try {
|
||||
if (m_visited != nullptr) {
|
||||
dealloc(m_visited);
|
||||
}
|
||||
m_visited = alloc(expr_fast_mark1);
|
||||
expr_fast_mark1 visited;
|
||||
flet<expr_fast_mark1*> _visited(m_visited, &visited);
|
||||
unsigned sz = g.size();
|
||||
for (unsigned i = 0; i < sz; i++) {
|
||||
process(g.form(i));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue