mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
split muz_qe into two directories
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d795792304
commit
137339a2e1
|
@ -53,11 +53,11 @@ def init_project_def():
|
|||
add_lib('fpa', ['core_tactics', 'bv_tactics', 'sat_tactic'], 'tactic/fpa')
|
||||
add_lib('smt_tactic', ['smt'], 'smt/tactic')
|
||||
add_lib('sls_tactic', ['tactic', 'normal_forms', 'core_tactics', 'bv_tactics'], 'tactic/sls')
|
||||
# TODO: split muz_qe into muz, qe. Perhaps, we should also consider breaking muz into muz and pdr.
|
||||
add_lib('muz_qe', ['smt', 'sat', 'smt2parser', 'aig_tactic'])
|
||||
add_lib('smtlogic_tactics', ['arith_tactics', 'bv_tactics', 'nlsat_tactic', 'smt_tactic', 'aig_tactic', 'muz_qe'], 'tactic/smtlogics')
|
||||
add_lib('qe', ['smt','sat'], 'qe')
|
||||
add_lib('muz', ['smt', 'sat', 'smt2parser', 'aig_tactic','qe'])
|
||||
add_lib('smtlogic_tactics', ['arith_tactics', 'bv_tactics', 'nlsat_tactic', 'smt_tactic', 'aig_tactic', 'muz','qe'], 'tactic/smtlogics')
|
||||
add_lib('ufbv_tactic', ['normal_forms', 'core_tactics', 'macros', 'smt_tactic', 'rewriter'], 'tactic/ufbv')
|
||||
add_lib('portfolio', ['smtlogic_tactics', 'ufbv_tactic', 'fpa', 'aig_tactic', 'muz_qe', 'sls_tactic', 'subpaving_tactic'], 'tactic/portfolio')
|
||||
add_lib('portfolio', ['smtlogic_tactics', 'ufbv_tactic', 'fpa', 'aig_tactic', 'muz', 'qe','sls_tactic', 'subpaving_tactic'], 'tactic/portfolio')
|
||||
add_lib('smtparser', ['portfolio'], 'parsers/smt')
|
||||
API_files = ['z3_api.h', 'z3_algebraic.h', 'z3_polynomial.h', 'z3_rcf.h']
|
||||
add_lib('api', ['portfolio', 'user_plugin', 'smtparser', 'realclosure'],
|
||||
|
|
0
src/muz_qe/aig_exporter.cpp → src/muz/aig_exporter.cpp
Executable file → Normal file
0
src/muz_qe/aig_exporter.cpp → src/muz/aig_exporter.cpp
Executable file → Normal file
0
src/muz_qe/aig_exporter.h → src/muz/aig_exporter.h
Executable file → Normal file
0
src/muz_qe/aig_exporter.h → src/muz/aig_exporter.h
Executable file → Normal file
|
@ -49,7 +49,7 @@ Example from Boogie:
|
|||
#include "model_pp.h"
|
||||
#include "proof_utils.h"
|
||||
#include "ast_pp.h"
|
||||
#include "dl_util.h"
|
||||
#include "qe_util.h"
|
||||
|
||||
namespace datalog {
|
||||
|
||||
|
@ -91,7 +91,7 @@ namespace datalog {
|
|||
if (!m.is_implies(premise, l1, l2)) {
|
||||
continue;
|
||||
}
|
||||
datalog::flatten_and(l1, literals);
|
||||
qe::flatten_and(l1, literals);
|
||||
positions2.reset();
|
||||
premises2.reset();
|
||||
premises2.push_back(premise);
|
|
@ -35,12 +35,6 @@ Revision History:
|
|||
#include"dl_mk_similarity_compressor.h"
|
||||
#include"dl_mk_unbound_compressor.h"
|
||||
#include"dl_mk_subsumption_checker.h"
|
||||
#include"dl_compiler.h"
|
||||
#include"dl_instruction.h"
|
||||
#include"dl_context.h"
|
||||
#include"for_each_expr.h"
|
||||
#include"ast_smt_pp.h"
|
||||
#include"ast_smt2_pp.h"
|
||||
#include"dl_mk_partial_equiv.h"
|
||||
#include"dl_mk_bit_blast.h"
|
||||
#include"dl_mk_array_blast.h"
|
||||
|
@ -49,6 +43,12 @@ Revision History:
|
|||
#include"dl_mk_quantifier_abstraction.h"
|
||||
#include"dl_mk_quantifier_instantiation.h"
|
||||
#include"dl_mk_scale.h"
|
||||
#include"dl_compiler.h"
|
||||
#include"dl_instruction.h"
|
||||
#include"dl_context.h"
|
||||
#include"for_each_expr.h"
|
||||
#include"ast_smt_pp.h"
|
||||
#include"ast_smt2_pp.h"
|
||||
#include"datatype_decl_plugin.h"
|
||||
|
||||
|
|
@ -18,7 +18,7 @@ Revision History:
|
|||
--*/
|
||||
|
||||
#include "dl_mk_array_blast.h"
|
||||
|
||||
#include "qe_util.h"
|
||||
|
||||
namespace datalog {
|
||||
|
||||
|
@ -101,7 +101,7 @@ namespace datalog {
|
|||
|
||||
bool mk_array_blast::ackermanize(rule const& r, expr_ref& body, expr_ref& head) {
|
||||
expr_ref_vector conjs(m);
|
||||
flatten_and(body, conjs);
|
||||
qe::flatten_and(body, conjs);
|
||||
m_defs.reset();
|
||||
m_sub.reset();
|
||||
m_next_var = 0;
|
||||
|
@ -207,7 +207,7 @@ namespace datalog {
|
|||
for (unsigned i = utsz; i < tsz; ++i) {
|
||||
conjs.push_back(r.get_tail(i));
|
||||
}
|
||||
flatten_and(conjs);
|
||||
qe::flatten_and(conjs);
|
||||
for (unsigned i = 0; i < conjs.size(); ++i) {
|
||||
expr* x, *y, *e = conjs[i].get();
|
||||
|
38
src/muz/dl_mk_different.h
Normal file
38
src/muz/dl_mk_different.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*++
|
||||
Copyright (c) 2013 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
dl_mk_different_symbolic.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Create Horn clauses for different symbolic transformation.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2013-06-19
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
#define _DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
|
||||
namespace datalog {
|
||||
|
||||
class mk_different_symbolic : public rule_transformer::plugin {
|
||||
ast_manager& m;
|
||||
context& m_ctx;
|
||||
public:
|
||||
mk_different_symbolic(context & ctx, unsigned priority = 33037);
|
||||
~mk_different_symbolic();
|
||||
rule_set * operator()(rule_set const & source);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_DIFFERENT_SYMBOLIC_H_ */
|
||||
|
|
@ -546,7 +546,7 @@ namespace datalog {
|
|||
|
||||
if (modified) {
|
||||
m_conj.reset();
|
||||
flatten_and(simp_res, m_conj);
|
||||
qe::flatten_and(simp_res, m_conj);
|
||||
for (unsigned i = 0; i < m_conj.size(); ++i) {
|
||||
expr* e = m_conj[i].get();
|
||||
if (is_app(e)) {
|
|
@ -430,7 +430,7 @@ namespace datalog {
|
|||
var* v, *w;
|
||||
rational n1, n2;
|
||||
expr_ref_vector conjs(m);
|
||||
datalog::flatten_and(cond, conjs);
|
||||
qe::flatten_and(cond, conjs);
|
||||
matrix& M = get_ineqs();
|
||||
unsigned num_columns = get_signature().size();
|
||||
|
|
@ -48,7 +48,7 @@ namespace datalog {
|
|||
for (unsigned j = 0; j < tsz; ++j) {
|
||||
conjs.push_back(r.get_tail(j));
|
||||
}
|
||||
datalog::flatten_and(conjs);
|
||||
qe::flatten_and(conjs);
|
||||
for (unsigned j = 0; j < conjs.size(); ++j) {
|
||||
expr* e = conjs[j].get();
|
||||
quantifier* q;
|
|
@ -619,7 +619,7 @@ namespace datalog {
|
|||
for (unsigned j = r.get_uninterpreted_tail_size(); j < r.get_tail_size(); ++j) {
|
||||
conjs.push_back(r.get_tail(j));
|
||||
}
|
||||
datalog::flatten_and(conjs);
|
||||
qe::flatten_and(conjs);
|
||||
return conjs;
|
||||
}
|
||||
|
|
@ -263,7 +263,7 @@ namespace datalog {
|
|||
if (m.is_implies(fml, e1, e2)) {
|
||||
expr_ref_vector es(m);
|
||||
head = ensure_app(e2);
|
||||
datalog::flatten_and(e1, es);
|
||||
qe::flatten_and(e1, es);
|
||||
for (unsigned i = 0; i < es.size(); ++i) {
|
||||
body.push_back(ensure_app(es[i].get()));
|
||||
}
|
||||
|
@ -380,7 +380,7 @@ namespace datalog {
|
|||
for (unsigned i = 0; i < body.size(); ++i) {
|
||||
r.push_back(body[i].get());
|
||||
}
|
||||
flatten_and(r);
|
||||
qe::flatten_and(r);
|
||||
body.reset();
|
||||
for (unsigned i = 0; i < r.size(); ++i) {
|
||||
body.push_back(ensure_app(r[i].get()));
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue