mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 16:25:48 +00:00
fixing unit tests
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1cd1a42618
commit
aeb3857391
8 changed files with 18 additions and 16 deletions
|
@ -27,9 +27,9 @@ static void test_table(mk_table_fn mk_table) {
|
|||
smt_params params;
|
||||
ast_manager ast_m;
|
||||
datalog::context ctx(ast_m, params);
|
||||
datalog::relation_manager & m = ctx.get_rmanager();
|
||||
datalog::relation_manager & m = ctx.get_rel_context().get_rmanager();
|
||||
|
||||
ctx.get_rmanager().register_plugin(alloc(datalog::bitvector_table_plugin, ctx.get_rmanager()));
|
||||
m.register_plugin(alloc(datalog::bitvector_table_plugin, m));
|
||||
|
||||
datalog::table_base* _tbl = mk_table(m, sig);
|
||||
datalog::table_base& table = *_tbl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue