Skip to content

Commit

Permalink
fix recursive self call for slice_solver check-sat-cc method
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Oct 10, 2024
1 parent 54d30f2 commit efde656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/slice_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ class slice_solver : public solver {

lbool check_sat_cc(expr_ref_vector const& cube, vector<expr_ref_vector> const& clauses) override {
flush();
return check_sat_cc(cube, clauses);
return s->check_sat_cc(cube, clauses);
}

lbool find_mutexes(expr_ref_vector const& vars, vector<expr_ref_vector>& mutexes) override {
Expand Down

0 comments on commit efde656

Please sign in to comment.