3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Remove unused private member from smaller_pattern.

This commit is contained in:
Bruce Mitchener 2022-08-02 23:34:48 +07:00 committed by Nikolaj Bjorner
parent 3ab96281eb
commit 112dba559f
2 changed files with 2 additions and 5 deletions

View file

@ -106,7 +106,7 @@ pattern_inference_cfg::pattern_inference_cfg(ast_manager & m, pattern_inference_
m_params(params),
m_bfid(m.get_basic_family_id()),
m_afid(m.mk_family_id("arith")),
m_le(m),
m_le(),
m_nested_arith_only(true),
m_block_loop_patterns(params.m_pi_block_loop_patterns),
m_candidates(m),

View file

@ -37,7 +37,6 @@ Revision History:
every instance of f(g(X)) is also an instance of f(X).
*/
class smaller_pattern {
ast_manager & m;
ptr_vector<expr> m_bindings;
typedef std::pair<expr *, expr *> expr_pair;
@ -50,9 +49,7 @@ class smaller_pattern {
public:
smaller_pattern(ast_manager & m):
m(m) {
}
smaller_pattern() = default;
smaller_pattern & operator=(smaller_pattern const &) = delete;