3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 15:56:30 -07:00
parent 10d0404175
commit d0e20e44ff
714 changed files with 714 additions and 2142 deletions

View file

@ -16,8 +16,7 @@ Author:
Notes:
--*/
#ifndef CTX_SOLVER_SIMPLIFY_TACTIC_H_
#define CTX_SOLVER_SIMPLIFY_TACTIC_H_
#pragma once
#include "tactic/tactical.h"
@ -26,4 +25,3 @@ tactic * mk_ctx_solver_simplify_tactic(ast_manager & m, params_ref const & p = p
ADD_TACTIC("ctx-solver-simplify", "apply solver-based contextual simplification rules.", "mk_ctx_solver_simplify_tactic(m, p)")
*/
#endif

View file

@ -16,8 +16,7 @@ Author:
Notes:
--*/
#ifndef SMT_TACTIC_H_
#define SMT_TACTIC_H_
#pragma once
#include "util/params.h"
#include "ast/ast.h"
@ -38,4 +37,3 @@ tactic * mk_parallel_smt_tactic(ast_manager& m, params_ref const& p);
ADD_TACTIC("smt", "apply a SAT based SMT solver.", "mk_smt_tactic(m, p)")
ADD_TACTIC("psmt", "builtin strategy for SMT tactic in parallel.", "mk_parallel_smt_tactic(m, p)")
*/
#endif

View file

@ -21,8 +21,7 @@ Notes:
It uses the smt_context for the solver.
--*/
#ifndef UNIT_SUBSUMPTION_TACTIC_H_
#define UNIT_SUBSUMPTION_TACTIC_H_
#pragma once
#include "tactic/tactic.h"
tactic * mk_unit_subsumption_tactic(ast_manager & m, params_ref const & p = params_ref());
@ -30,4 +29,3 @@ tactic * mk_unit_subsumption_tactic(ast_manager & m, params_ref const & p = para
ADD_TACTIC("unit-subsume-simplify", "unit subsumption simplification.", "mk_unit_subsumption_tactic(m, p)")
*/
#endif