summaryrefslogtreecommitdiff
path: root/src/theory/arrays
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-10-03 06:11:02 -0500
committerGitHub <noreply@github.com>2020-10-03 06:11:02 -0500
commitd972bd973320ed3b4c7a41ff6a16e76f754d7f58 (patch)
treeed64dfeafcb698219cfeaaec302c06a728c651df /src/theory/arrays
parent883298e4d5bf54b83125fc256601cdbb6c21ad03 (diff)
Standardization of Theory (#5181)
This cleans up various interfaces of Theory now that all theories have been updated to the new standard. This includes making check non-virtual, standardizing when trigger terms are added to equality engines, and simplifications for collectModelInfo.
Diffstat (limited to 'src/theory/arrays')
-rw-r--r--src/theory/arrays/theory_arrays.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/theory/arrays/theory_arrays.cpp b/src/theory/arrays/theory_arrays.cpp
index 5dee75a6c..3270c1c07 100644
--- a/src/theory/arrays/theory_arrays.cpp
+++ b/src/theory/arrays/theory_arrays.cpp
@@ -852,7 +852,6 @@ void TheoryArrays::notifySharedTerm(TNode t)
Debug("arrays::sharing") << spaces(getSatContext()->getLevel())
<< "TheoryArrays::notifySharedTerm(" << t << ")"
<< std::endl;
- d_equalityEngine->addTriggerTerm(t, THEORY_ARRAYS);
if (t.getType().isArray()) {
d_sharedArrays.insert(t);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback