summaryrefslogtreecommitdiff
path: root/src/theory/bv/slicer.cpp
diff options
context:
space:
mode:
authorlianah <lianahady@gmail.com>2014-06-15 21:33:51 -0400
committerlianah <lianahady@gmail.com>2014-06-15 21:34:19 -0400
commitf7118b28977ba3e1460456824539e97592df7960 (patch)
tree2bb81c6888ff43582c25ea52fbf159f2c9c585b6 /src/theory/bv/slicer.cpp
parent1a9736b35db944f73a95bf98d800ebae8e435a92 (diff)
core solver fix
Diffstat (limited to 'src/theory/bv/slicer.cpp')
-rw-r--r--src/theory/bv/slicer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bv/slicer.cpp b/src/theory/bv/slicer.cpp
index 0644900fa..c37c8089d 100644
--- a/src/theory/bv/slicer.cpp
+++ b/src/theory/bv/slicer.cpp
@@ -498,7 +498,7 @@ bool Slicer::isCoreTerm(TNode node) {
if (d_coreTermCache.find(node) == d_coreTermCache.end()) {
Kind kind = node.getKind();
bool not_core;
- if (options::bitvectorEqualitySlicer()) {
+ if (options::bitvectorEqualitySlicer() != BITVECTOR_SLICER_OFF) {
not_core = (kind != kind::BITVECTOR_EXTRACT && kind != kind::BITVECTOR_CONCAT);
} else {
not_core = true;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback