mirror of
https://github.com/Z3Prover/z3
synced 2026-06-19 23:26:30 +00:00
ensure engine is datalog for dl_table and dl_util tests
This commit is contained in:
parent
24e5a6ae3f
commit
ebdf031c8f
6 changed files with 16 additions and 15 deletions
|
|
@ -44,6 +44,7 @@ class udoc_tester {
|
|||
bv_util bv;
|
||||
expr_ref_vector m_vars;
|
||||
smt_params m_smt_params;
|
||||
params_ref m_fp_params;
|
||||
datalog::register_engine m_reg;
|
||||
datalog::context m_ctx;
|
||||
datalog::rel_context rc;
|
||||
|
|
@ -113,7 +114,7 @@ class udoc_tester {
|
|||
|
||||
public:
|
||||
udoc_tester():
|
||||
m_init(m), bv(m), m_vars(m), m_ctx(m, m_reg, m_smt_params), rc(m_ctx),
|
||||
m_init(m), bv(m), m_vars(m), m_ctx(m, m_reg, m_smt_params, m_fp_params), rc(m_ctx),
|
||||
p(dynamic_cast<udoc_plugin&>(*rc.get_rmanager().get_relation_plugin(symbol("doc")))),
|
||||
cr(dynamic_cast<datalog::check_relation_plugin&>(*rc.get_rmanager().get_relation_plugin(symbol("check_relation"))))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue