summaryrefslogtreecommitdiff
path: root/src/theory/uf/theory_uf.cpp
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2011-09-02 12:39:23 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2011-09-02 12:39:23 +0000
commit90267f8729799f44c6fb33ace11b971a16e78dff (patch)
tree94a3bacbc8bba83e8002149232fb9804d2727ec1 /src/theory/uf/theory_uf.cpp
parent1ea434616c48b92189e77b37b3e82dbbee0e0ccc (diff)
* Changing pre-registration to be context dependent -- it is called from the SAT solver on every backtrack
* Updated UF to handle the context dependent pre-registration * Additionally some small changes in order to satisfy warnings of the eclipse code analysis tool
Diffstat (limited to 'src/theory/uf/theory_uf.cpp')
-rw-r--r--src/theory/uf/theory_uf.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/theory/uf/theory_uf.cpp b/src/theory/uf/theory_uf.cpp
index a3eeec633..3c8d59d08 100644
--- a/src/theory/uf/theory_uf.cpp
+++ b/src/theory/uf/theory_uf.cpp
@@ -153,6 +153,7 @@ void TheoryUF::preRegisterTerm(TNode node) {
d_equalityEngine.addTriggerEquality(node, d_true, node);
d_equalityEngine.addTriggerEquality(node, d_false, node.notNode());
}
+ break;
default:
// Variables etc
d_equalityEngine.addTerm(node);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback