mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
fix crash when parsing datalog format
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
299e1788b8
commit
065e0652a3
|
@ -23,6 +23,7 @@ Revision History:
|
|||
#include "util/stopwatch.h"
|
||||
#include "smt/params/smt_params.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "ast/reg_decl_plugins.h"
|
||||
#include "muz/rel/dl_compiler.h"
|
||||
#include "muz/transforms/dl_mk_filter_rules.h"
|
||||
#include "muz/rel/dl_finite_product_relation.h"
|
||||
|
@ -122,6 +123,7 @@ unsigned read_datalog(char const * file) {
|
|||
IF_VERBOSE(1, verbose_stream() << "Z3 Datalog Engine\n";);
|
||||
smt_params s_params;
|
||||
ast_manager m;
|
||||
reg_decl_plugins(m);
|
||||
datalog::register_engine re;
|
||||
g_overall_time.start();
|
||||
register_on_timeout_proc(on_timeout);
|
||||
|
|
Loading…
Reference in a new issue