summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-09-03 16:33:33 -0700
committerGitHub <noreply@github.com>2021-09-03 23:33:33 +0000
commit1eb3c6c8eb3da95cababcc0b1705c0299eee099c (patch)
tree72233917af15c553dfbbf59f1125952cab83c89b /src/theory/theory.cpp
parent5cef06bd2beff38a911c74ec082d9789eed83421 (diff)
EnvObj: Add options(), context(), userContext(). (#7137)
This further renames EnvObj::getLogicInfo to EnvObj::logicInfo.
Diffstat (limited to 'src/theory/theory.cpp')
-rw-r--r--src/theory/theory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/theory.cpp b/src/theory/theory.cpp
index f6513933f..0c2624d64 100644
--- a/src/theory/theory.cpp
+++ b/src/theory/theory.cpp
@@ -338,7 +338,7 @@ bool Theory::isLegalElimination(TNode x, TNode val)
{
return false;
}
- if (!options::produceModels() && !getLogicInfo().isQuantified())
+ if (!options::produceModels() && !logicInfo().isQuantified())
{
// Don't care about the model and logic is not quantified, we can eliminate.
return true;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback