mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 01:40:22 +00:00
move to list of clauses
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
502e323678
commit
bfeb15b876
14 changed files with 104 additions and 83 deletions
|
@ -191,8 +191,8 @@ namespace smt {
|
|||
}
|
||||
|
||||
|
||||
lbool check_sat_cc_core(expr_ref_vector const& cube, expr_ref_vector const& clause) override {
|
||||
return m_context.check(cube, clause);
|
||||
lbool check_sat_cc_core(expr_ref_vector const& cube, vector<expr_ref_vector> const& clauses) override {
|
||||
return m_context.check(cube, clauses);
|
||||
}
|
||||
|
||||
struct scoped_minimize_core {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue