3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-10 09:48:05 +00:00

update unit tests to use filter_by_negation verifier from check_relation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-10-01 15:21:42 -07:00
parent d8e62cac94
commit bb15ddbf15
3 changed files with 19 additions and 58 deletions

View file

@ -77,6 +77,7 @@ namespace datalog {
static check_relation& get(relation_base& r);
static check_relation* get(relation_base* r);
static check_relation const & get(relation_base const& r);
expr_ref ground(relation_base const& rb, expr* fml) const;
public:
check_relation_plugin(relation_manager& rm);
~check_relation_plugin();
@ -141,8 +142,8 @@ namespace datalog {
void verify_filter_by_negation(
expr* dst0,
check_relation const& dst,
check_relation const& neg,
relation_base const& dst,
relation_base const& neg,
unsigned_vector const& dst_eq,
unsigned_vector const& neg_eq);
};