3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 06:03:23 +00:00

unused variable warning

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-25 15:41:42 -07:00
parent 4d586c2c13
commit 78afa2527c
4 changed files with 6 additions and 7 deletions

View file

@ -91,7 +91,6 @@ namespace smt {
context& ctx;
ast_manager& m;
value_sweep& vs;
datatype::util m_dt;
arith_util m_a;
recfun::util m_rec;
@ -123,7 +122,7 @@ namespace smt {
void apply_induction(literal lit, induction_positions_t const & positions);
public:
induction_lemmas(context& ctx, ast_manager& m, value_sweep& vs);
induction_lemmas(context& ctx, ast_manager& m);
bool operator()(literal lit);
};