mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 16:25:48 +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
|
@ -1,5 +1,7 @@
|
|||
#ifdef _WINDOWS
|
||||
#include "dl_context.h"
|
||||
#include "dl_register_engine.h"
|
||||
#include "dl_relation_manager.h"
|
||||
#include "dl_interval_relation.h"
|
||||
#include "dl_bound_relation.h"
|
||||
#include "dl_product_relation.h"
|
||||
|
@ -10,7 +12,8 @@ namespace datalog {
|
|||
static void test_interval_relation() {
|
||||
smt_params params;
|
||||
ast_manager ast_m;
|
||||
context ctx(ast_m, params);
|
||||
register_engine re;
|
||||
context ctx(ast_m, re, params);
|
||||
arith_util autil(ast_m);
|
||||
relation_manager & m = ctx.get_rel_context()->get_rmanager();
|
||||
m.register_plugin(alloc(interval_relation_plugin, m));
|
||||
|
@ -113,7 +116,8 @@ namespace datalog {
|
|||
|
||||
smt_params params;
|
||||
ast_manager ast_m;
|
||||
context ctx(ast_m, params);
|
||||
register_engine re;
|
||||
context ctx(ast_m, re, params);
|
||||
arith_util autil(ast_m);
|
||||
relation_manager & m = ctx.get_rel_context()->get_rmanager();
|
||||
m.register_plugin(alloc(bound_relation_plugin, m));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue