summaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-08-13 11:29:47 -0500
committerGitHub <noreply@github.com>2019-08-13 11:29:47 -0500
commit8fd4ac8bff4aa7a4b4e04e35f6944d303d5cf498 (patch)
tree0344ffc01fbc5d27faf19e0ef0a0de36551145eb /test/unit
parent47b910a85de71b6617e4d1d210dcb57de597961b (diff)
Properly implement logic info for separation logic (#3176)
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/theory/logic_info_white.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/theory/logic_info_white.h b/test/unit/theory/logic_info_white.h
index 2cc53bef3..c2ca621d9 100644
--- a/test/unit/theory/logic_info_white.h
+++ b/test/unit/theory/logic_info_white.h
@@ -541,13 +541,13 @@ public:
info.arithOnlyLinear();
info.disableIntegers();
info.lock();
- TS_ASSERT_EQUALS( info.getLogicString(), "AUFBVFPDTLRASEP" );
+ TS_ASSERT_EQUALS(info.getLogicString(), "SEP_AUFBVFPDTLRA");
info = info.getUnlockedCopy();
TS_ASSERT( !info.isLocked() );
info.disableQuantifiers();
info.lock();
- TS_ASSERT_EQUALS( info.getLogicString(), "QF_AUFBVFPDTLRASEP" );
+ TS_ASSERT_EQUALS(info.getLogicString(), "QF_SEP_AUFBVFPDTLRA");
info = info.getUnlockedCopy();
TS_ASSERT( !info.isLocked() );
@@ -556,7 +556,7 @@ public:
info.enableIntegers();
info.disableReals();
info.lock();
- TS_ASSERT_EQUALS( info.getLogicString(), "QF_AUFFPLIASEP" );
+ TS_ASSERT_EQUALS(info.getLogicString(), "QF_SEP_AUFFPLIA");
info = info.getUnlockedCopy();
TS_ASSERT( !info.isLocked() );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback