3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-02 20:47:52 +00:00

working on udoc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-09-21 20:25:11 -07:00
parent a50cbef877
commit 22808a039d
17 changed files with 171 additions and 39 deletions

View file

@ -52,6 +52,8 @@ namespace datalog {
void set_cancel(bool f);
void setup_default_relation();
public:
rel_context(context& ctx);
@ -77,6 +79,7 @@ namespace datalog {
virtual void inherit_predicate_kind(func_decl* new_pred, func_decl* orig_pred);
virtual void collect_statistics(statistics& st) const;
virtual void cancel() { set_cancel(true); }
virtual void cleanup() { set_cancel(false);}