mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Enable datalog plugin for AST extensions
Signed-off-by: Alex Horn <t-alexh@microsoft.com>
This commit is contained in:
parent
140fb7942d
commit
e6ffa5d2a5
|
@ -621,6 +621,7 @@ void cmd_context::init_manager_core(bool new_manager) {
|
||||||
register_plugin(symbol("seq"), alloc(seq_decl_plugin), logic_has_seq());
|
register_plugin(symbol("seq"), alloc(seq_decl_plugin), logic_has_seq());
|
||||||
register_plugin(symbol("pb"), alloc(pb_decl_plugin), !has_logic());
|
register_plugin(symbol("pb"), alloc(pb_decl_plugin), !has_logic());
|
||||||
register_plugin(symbol("fpa"), alloc(fpa_decl_plugin), logic_has_fpa());
|
register_plugin(symbol("fpa"), alloc(fpa_decl_plugin), logic_has_fpa());
|
||||||
|
register_plugin(symbol("datalog_relation"), alloc(datalog::dl_decl_plugin), !has_logic());
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// the manager was created by an external module
|
// the manager was created by an external module
|
||||||
|
|
Loading…
Reference in a new issue