summaryrefslogtreecommitdiff
path: root/src/theory/uf/theory_uf.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-03-11 21:53:38 +0000
committerMorgan Deters <mdeters@gmail.com>2010-03-11 21:53:38 +0000
commit3cf73e344987c2449943ca3a97054565eb9d5726 (patch)
tree7e9448caaabb7cb3261de74031070eb5c50b864d /src/theory/uf/theory_uf.cpp
parent90d829959edf8ad97bd837230933c8443f63b95b (diff)
naive rewriting to fix minisat invariant; rewrite x == x ==> TRUE
Diffstat (limited to 'src/theory/uf/theory_uf.cpp')
-rw-r--r--src/theory/uf/theory_uf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/uf/theory_uf.cpp b/src/theory/uf/theory_uf.cpp
index 687f85c51..d6e1be9f2 100644
--- a/src/theory/uf/theory_uf.cpp
+++ b/src/theory/uf/theory_uf.cpp
@@ -289,7 +289,7 @@ void TheoryUF::check(Effort level){
d_disequality.push_back(assertion[0]);
break;
default:
- Unreachable();
+ Unhandled(assertion.getKind());
}
Debug("uf") << "TheoryUF::check(): done = " << (done() ? "true" : "false") << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback