mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
remove smtlib1 dependencies
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d7042c234f
commit
89971e2a98
18 changed files with 23 additions and 3918 deletions
|
@ -8,8 +8,6 @@ Copyright (c) 2015 Microsoft Corporation
|
|||
#include "smt/params/smt_params.h"
|
||||
#include "qe/qe.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "parsers/smt/smtlib.h"
|
||||
#include "parsers/smt/smtparser.h"
|
||||
#include "util/lbool.h"
|
||||
#include <sstream>
|
||||
#include "ast/reg_decl_plugins.h"
|
||||
|
@ -54,6 +52,9 @@ static void test_qe(ast_manager& m, lbool expected_outcome, expr* fml, char cons
|
|||
static void test_formula(lbool expected_outcome, char const* fml) {
|
||||
ast_manager m;
|
||||
reg_decl_plugins(m);
|
||||
// No-op requires SMTLIB2
|
||||
|
||||
#if 0
|
||||
scoped_ptr<smtlib::parser> parser = smtlib::parser::create(m);
|
||||
parser->initialize_smtlib();
|
||||
|
||||
|
@ -73,8 +74,10 @@ static void test_formula(lbool expected_outcome, char const* fml) {
|
|||
for (; it != end; ++it) {
|
||||
test_qe(m, expected_outcome, *it, 0);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
void tst_quant_elim() {
|
||||
disable_debug("heap");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue