mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 04:26:00 +00:00
cleanup and doc
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
da95fd7d83
commit
6a2d54b31e
2 changed files with 58 additions and 178 deletions
|
@ -20,6 +20,8 @@ Revision History:
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "qe/qe_arith.h"
|
||||
|
||||
namespace qe {
|
||||
enum mbi_result {
|
||||
mbi_sat,
|
||||
|
@ -110,16 +112,15 @@ namespace qe {
|
|||
solver_ref m_solver;
|
||||
solver_ref m_dual_solver;
|
||||
struct is_atom_proc;
|
||||
struct is_arith_var_proc1;
|
||||
struct is_arith_var_proc2;
|
||||
struct is_arith_var_proc;
|
||||
|
||||
app_ref_vector get_arith_vars1(model_ref& mdl, expr_ref_vector& lits);
|
||||
app_ref_vector get_arith_vars2(model_ref& mdl, expr_ref_vector& lits);
|
||||
app_ref_vector get_arith_vars(model_ref& mdl, expr_ref_vector& lits);
|
||||
bool get_literals(model_ref& mdl, expr_ref_vector& lits);
|
||||
void collect_atoms(expr_ref_vector const& fmls);
|
||||
void project0(model_ref& mdl, expr_ref_vector& lits);
|
||||
void project(model_ref& mdl, expr_ref_vector& lits);
|
||||
void project_euf(model_ref& mdl, expr_ref_vector& lits, app_ref_vector& avars);
|
||||
void order_avars(model_ref& mdl, expr_ref_vector& lits, app_ref_vector& avars);
|
||||
void substitute(vector<def> const& defs, expr_ref_vector& lits);
|
||||
void filter_private_arith(app_ref_vector& avars);
|
||||
public:
|
||||
euf_arith_mbi_plugin(solver* s, solver* emptySolver);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue