mirror of
https://github.com/Z3Prover/z3
synced 2025-07-28 23:17:56 +00:00
fix detection of arithmetic operations
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
cc216f8cc3
commit
3548057bd1
5 changed files with 28 additions and 15 deletions
|
@ -50,6 +50,8 @@ namespace sat {
|
|||
// check satisfiability
|
||||
virtual lbool check(unsigned num_lits = 0, literal const* lits = nullptr) = 0;
|
||||
|
||||
virtual char const* get_reason_unknown() const { return "reason unavailable"; }
|
||||
|
||||
// add clauses
|
||||
virtual void add_clause(unsigned n, literal* lits, bool is_redundant) = 0;
|
||||
void add_clause(literal l1, literal l2, bool is_redundant) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue