mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 19:51:22 +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
|
@ -2,6 +2,7 @@
|
|||
#include "ast_pp.h"
|
||||
#include "arith_decl_plugin.h"
|
||||
#include "dl_context.h"
|
||||
#include "dl_register_engine.h"
|
||||
#include "smt_params.h"
|
||||
#include "reg_decl_plugins.h"
|
||||
|
||||
|
@ -12,8 +13,8 @@ static void dparse_string(char const* str) {
|
|||
ast_manager m;
|
||||
smt_params params;
|
||||
reg_decl_plugins(m);
|
||||
|
||||
context ctx(m, params);
|
||||
register_engine re;
|
||||
context ctx(m, re, params);
|
||||
parser* p = parser::create(ctx,m);
|
||||
|
||||
bool res=p->parse_string(str);
|
||||
|
@ -39,8 +40,9 @@ static void dparse_file(char const* file) {
|
|||
ast_manager m;
|
||||
smt_params params;
|
||||
reg_decl_plugins(m);
|
||||
register_engine re;
|
||||
|
||||
context ctx(m, params);
|
||||
context ctx(m, re, params);
|
||||
parser* p = parser::create(ctx,m);
|
||||
|
||||
if (!p->parse_file(file)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue