mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
checkpoint
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
8a4f6d5719
commit
1ea606092c
50 changed files with 279 additions and 211 deletions
|
@ -25,5 +25,8 @@ class ast_manager;
|
|||
class tactic;
|
||||
|
||||
tactic * mk_cofactor_term_ite_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
/*
|
||||
ADD_TACTIC("cofactor-term-ite", "eliminate term if-the-else using cofactors.", "mk_cofactor_term_ite_tactic(m, p)")
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
|
|
@ -53,4 +53,8 @@ inline tactic * mk_ctx_simplify_tactic(ast_manager & m, params_ref const & p = p
|
|||
return clean(alloc(ctx_simplify_tactic, m, p));
|
||||
}
|
||||
|
||||
/*
|
||||
ADD_TACTIC("ctx-simplify", "apply contextual simplification rules.", "mk_ctx_simplify_tactic(m, p)")
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
|
|
@ -22,4 +22,8 @@ class tactic;
|
|||
|
||||
tactic * mk_der_tactic(ast_manager & m);
|
||||
|
||||
/*
|
||||
ADD_TACTIC_CMD("der", "destructive equality resolution.", "mk_der_tactic(m)")
|
||||
*/
|
||||
|
||||
#endif /* _DER_TACTIC_H_ */
|
||||
|
|
|
@ -24,5 +24,8 @@ class ast_manager;
|
|||
class tactic;
|
||||
|
||||
tactic * mk_reduce_args_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
/*
|
||||
ADD_TACTIC("reduce-args", "reduce the number of arguments of function applications, when for all occurrences of a function f the i-th is a value.", "mk_reduce_args_tactic(m, p)")
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
|
|
@ -28,4 +28,9 @@ tactic * mk_tseitin_cnf_core_tactic(ast_manager & m, params_ref const & p = para
|
|||
|
||||
tactic * mk_tseitin_cnf_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
|
||||
/*
|
||||
ADD_TACTIC("tseitin-cnf", "convert goal into CNF using tseitin-like encoding (note: quantifiers are ignored).", "mk_tseitin_cnf_tactic(m, p)")
|
||||
ADD_TACTIC("tseitin-cnf-core", "convert goal into CNF using tseitin-like encoding (note: quantifiers are ignored). This tactic does not apply required simplifications to the input goal like the tseitin-cnf tactic.", "mk_tseitin_cnf_core_tactic(m, p)")
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue