Skip to content

Commit f322140

Browse files
committed
MOre
1 parent c6226e9 commit f322140

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/theory/bv/theory_bv_rewriter.cpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ TheoryBVRewriter::TheoryBVRewriter(NodeManager* nm) : TheoryRewriter(nm)
3434
initializeRewrites();
3535
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_EQ_SOLVE,
3636
TheoryRewriteCtx::POST_DSL);
37-
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_EXTRACT_CONCAT,
38-
TheoryRewriteCtx::POST_DSL);
39-
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_EXTRACT_SIGN_EXTEND,
40-
TheoryRewriteCtx::POST_DSL);
4137
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_ASHR_BY_CONST,
4238
TheoryRewriteCtx::POST_DSL);
4339
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_OR_SIMPLIFY,
@@ -46,8 +42,6 @@ TheoryBVRewriter::TheoryBVRewriter(NodeManager* nm) : TheoryRewriter(nm)
4642
TheoryRewriteCtx::POST_DSL);
4743
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_XOR_SIMPLIFY,
4844
TheoryRewriteCtx::POST_DSL);
49-
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_AND_OR_XOR_CONCAT_PULLUP,
50-
TheoryRewriteCtx::POST_DSL);
5145
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_MULT_SLT_MULT,
5246
TheoryRewriteCtx::POST_DSL);
5347
registerProofRewriteRule(ProofRewriteRule::MACRO_BV_CONCAT_EXTRACT_MERGE,
@@ -123,18 +117,12 @@ Node TheoryBVRewriter::rewriteViaRule(ProofRewriteRule id, const Node& n)
123117
break;
124118
case ProofRewriteRule::MACRO_BV_EXTRACT_CONCAT:
125119
BV_PROOF_REWRITE_CASE(ExtractConcat)
126-
case ProofRewriteRule::MACRO_BV_EXTRACT_SIGN_EXTEND:
127-
BV_PROOF_REWRITE_CASE(ExtractSignExtend)
128-
case ProofRewriteRule::MACRO_BV_ASHR_BY_CONST:
129-
BV_PROOF_REWRITE_CASE(AshrByConst)
130120
case ProofRewriteRule::MACRO_BV_OR_SIMPLIFY:
131121
BV_PROOF_REWRITE_CASE(OrSimplify)
132122
case ProofRewriteRule::MACRO_BV_AND_SIMPLIFY:
133123
BV_PROOF_REWRITE_CASE(AndSimplify)
134124
case ProofRewriteRule::MACRO_BV_XOR_SIMPLIFY:
135125
BV_PROOF_REWRITE_CASE(XorSimplify)
136-
case ProofRewriteRule::MACRO_BV_AND_OR_XOR_CONCAT_PULLUP:
137-
BV_PROOF_REWRITE_CASE(AndOrXorConcatPullUp)
138126
case ProofRewriteRule::MACRO_BV_MULT_SLT_MULT:
139127
BV_PROOF_REWRITE_CASE(MultSltMult)
140128
case ProofRewriteRule::MACRO_BV_CONCAT_EXTRACT_MERGE:

0 commit comments

Comments
 (0)