Skip to content

Commit

Permalink
Merge branch 'master' into nlsat-solver-stack
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner authored Aug 26, 2024
2 parents 3656a26 + 6a68cc5 commit d263714
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/sat/sat_ddfw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
6 changes: 2 additions & 4 deletions src/tactic/arith/fix_dl_var_tactic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit d263714

Please sign in to comment.