mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 15:55:46 +00:00
unused variables
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6292b06c67
commit
fc30461828
12 changed files with 21 additions and 16 deletions
|
@ -57,10 +57,9 @@ Proof checker for clauses created during search.
|
|||
* Replay proof entierly, then walk backwards extracting reduced proof.
|
||||
*/
|
||||
class proof_trim {
|
||||
cmd_context& ctx;
|
||||
ast_manager& m;
|
||||
sat::proof_trim trim;
|
||||
euf::theory_checker m_checker;
|
||||
ast_manager& m;
|
||||
sat::proof_trim trim;
|
||||
euf::theory_checker m_checker;
|
||||
vector<expr_ref_vector> m_clauses;
|
||||
bool_vector m_is_infer;
|
||||
symbol m_rup;
|
||||
|
@ -88,7 +87,7 @@ class proof_trim {
|
|||
|
||||
public:
|
||||
proof_trim(cmd_context& ctx):
|
||||
ctx(ctx),
|
||||
// ctx(ctx),
|
||||
m(ctx.m()),
|
||||
trim(gparams::get_module("sat"), m.limit()),
|
||||
m_checker(m) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue