mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix #6637
This commit is contained in:
parent
53ca65a62e
commit
2683a2d6ed
2 changed files with 4 additions and 3 deletions
|
@ -35,7 +35,7 @@ namespace euf {
|
|||
virtual bool check(app* jst) = 0;
|
||||
virtual expr_ref_vector clause(app* jst) = 0;
|
||||
virtual void register_plugins(theory_checker& pc) = 0;
|
||||
virtual bool vc(app* jst, expr_ref_vector const& clause, expr_ref_vector& v) { v.reset(); v.append(this->clause(jst)); return false; }
|
||||
virtual bool vc(app* jst, expr_ref_vector const& clause, expr_ref_vector& v) { v.append(this->clause(jst)); return false; }
|
||||
};
|
||||
|
||||
class theory_checker {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue