mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
update release notes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
971b9d4081
commit
d263b373ed
44 changed files with 106 additions and 57 deletions
|
@ -1,9 +1,9 @@
|
|||
z3_add_component(qe_lite
|
||||
SOURCES
|
||||
qe_lite.cpp
|
||||
qe_lite_tactic.cpp
|
||||
COMPONENT_DEPENDENCIES
|
||||
tactic
|
||||
mbp
|
||||
TACTIC_HEADERS
|
||||
qe_lite.h
|
||||
qe_lite_tactic.h
|
||||
)
|
||||
|
|
|
@ -34,7 +34,7 @@ Revision History:
|
|||
#include "ast/datatype_decl_plugin.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "qe/mbp/mbp_solve_plugin.h"
|
||||
#include "qe/lite/qe_lite.h"
|
||||
#include "qe/lite/qe_lite_tactic.h"
|
||||
#include "tactic/dependent_expr_state_tactic.h"
|
||||
|
||||
|
||||
|
@ -2444,9 +2444,9 @@ namespace {
|
|||
}
|
||||
|
||||
tactic * mk_qe_lite_tactic(ast_manager & m, params_ref const & p) {
|
||||
return alloc(dependent_expr_state_tactic, m, p, mk_qe_lite_simplifer);
|
||||
return alloc(dependent_expr_state_tactic, m, p, mk_qe_lite_simplifier);
|
||||
}
|
||||
|
||||
dependent_expr_simplifier* mk_qe_lite_simplifer(ast_manager& m, params_ref const& p, dependent_expr_state& st) {
|
||||
dependent_expr_simplifier* mk_qe_lite_simplifier(ast_manager& m, params_ref const& p, dependent_expr_state& st) {
|
||||
return alloc(qe_lite_simplifier, m, p, st);
|
||||
}
|
|
@ -68,8 +68,10 @@ public:
|
|||
};
|
||||
|
||||
tactic * mk_qe_lite_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
|
||||
dependent_expr_simplifier* mk_qe_lite_simplifier(ast_manager& m, params_ref const& p, dependent_expr_state& st);
|
||||
|
||||
/*
|
||||
ADD_TACTIC("qe-light", "apply light-weight quantifier elimination.", "mk_qe_lite_tactic(m, p)")
|
||||
ADD_SIMPLIFIER("qe-light", "apply light-weight quantifier elimination.", "mk_qe_lite_simplifier(m, p, s)")
|
||||
*/
|
||||
|
||||
dependent_expr_simplifier* mk_qe_lite_simplifer(ast_manager& m, params_ref const& p, dependent_expr_state& st);
|
|
@ -30,7 +30,7 @@ Revision History:
|
|||
#include "qe/mbp/mbp_arith.h"
|
||||
#include "qe/mbp/mbp_arrays.h"
|
||||
#include "qe/mbp/mbp_datatypes.h"
|
||||
#include "qe/lite/qe_lite.h"
|
||||
#include "qe/lite/qe_lite_tactic.h"
|
||||
#include "model/model_pp.h"
|
||||
#include "model/model_evaluator.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue