mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 15:25:46 +00:00
re-organize muz_qe into separate units
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4597872be8
commit
0d56499e2d
131 changed files with 994 additions and 20069 deletions
|
@ -3,6 +3,7 @@
|
|||
#include "arith_decl_plugin.h"
|
||||
#include "dl_context.h"
|
||||
#include "smt_params.h"
|
||||
#include "dl_register_engine.h"
|
||||
|
||||
using namespace datalog;
|
||||
|
||||
|
@ -26,9 +27,9 @@ static lbool dl_context_eval_unary_predicate(ast_manager & m, context & ctx, cha
|
|||
static void dl_context_simple_query_test(params_ref & params) {
|
||||
ast_manager m;
|
||||
dl_decl_util decl_util(m);
|
||||
|
||||
register_engine re;
|
||||
smt_params fparams;
|
||||
context ctx(m, fparams);
|
||||
context ctx(m, re, fparams);
|
||||
ctx.updt_params(params);
|
||||
|
||||
/* lbool status = */ dl_context_eval_unary_predicate(m, ctx, "Z 64\n\nP(x:Z)\nP(\"a\").", "P");
|
||||
|
@ -50,7 +51,8 @@ void dl_context_saturate_file(params_ref & params, const char * f) {
|
|||
ast_manager m;
|
||||
dl_decl_util decl_util(m);
|
||||
smt_params fparams;
|
||||
context ctx(m, fparams);
|
||||
register_engine re;
|
||||
context ctx(m, re, fparams);
|
||||
ctx.updt_params(params);
|
||||
|
||||
datalog::parser * parser = datalog::parser::create(ctx, m);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue