summaryrefslogtreecommitdiff
path: root/src/expr
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-05-20 17:41:50 -0700
committerGitHub <noreply@github.com>2021-05-21 00:41:50 +0000
commit9670dd43576cd21de82e22e76c57e783aa143d21 (patch)
tree7a5157afa203bbe0a8755bdb0e178fb993d7e262 /src/expr
parent9e5f2385b73d55f675fa3996a2dd6df0e8d7652b (diff)
BV: Rename BITVECTOR_PLUS to BITVECTOR_ADD. (#6589)
Diffstat (limited to 'src/expr')
-rw-r--r--src/expr/proof_rule.cpp2
-rw-r--r--src/expr/proof_rule.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/proof_rule.cpp b/src/expr/proof_rule.cpp
index 02323b606..c2a6a30f6 100644
--- a/src/expr/proof_rule.cpp
+++ b/src/expr/proof_rule.cpp
@@ -140,7 +140,7 @@ const char* toString(PfRule id)
case PfRule::BV_BITBLAST_NOR: return "BV_BITBLAST_NOR";
case PfRule::BV_BITBLAST_COMP: return "BV_BITBLAST_COMP";
case PfRule::BV_BITBLAST_MULT: return "BV_BITBLAST_MULT";
- case PfRule::BV_BITBLAST_PLUS: return "BV_BITBLAST_PLUS";
+ case PfRule::BV_BITBLAST_ADD: return "BV_BITBLAST_ADD";
case PfRule::BV_BITBLAST_SUB: return "BV_BITBLAST_SUB";
case PfRule::BV_BITBLAST_NEG: return "BV_BITBLAST_NEG";
case PfRule::BV_BITBLAST_UDIV: return "BV_BITBLAST_UDIV";
diff --git a/src/expr/proof_rule.h b/src/expr/proof_rule.h
index cfab15614..e4c33a840 100644
--- a/src/expr/proof_rule.h
+++ b/src/expr/proof_rule.h
@@ -757,7 +757,7 @@ enum class PfRule : uint32_t
BV_BITBLAST_NOR,
BV_BITBLAST_COMP,
BV_BITBLAST_MULT,
- BV_BITBLAST_PLUS,
+ BV_BITBLAST_ADD,
BV_BITBLAST_SUB,
BV_BITBLAST_NEG,
BV_BITBLAST_UDIV,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback