summaryrefslogtreecommitdiff
path: root/src/theory/uf
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-06-30 06:06:30 +0000
committerMorgan Deters <mdeters@gmail.com>2011-06-30 06:06:30 +0000
commit29cf5a3812f1edafc3c233483c65f0cc4b125295 (patch)
tree307f9c8981e5879a4a21fe26e4e89b902f29bbee /src/theory/uf
parentc64799a735cc9fecb8e618b2c66b252d7cda549d (diff)
only use theory registration if (1) a theory requests it, or (2) if there's more than one "real" theory (not BUILTIN or BOOL) active
Diffstat (limited to 'src/theory/uf')
-rw-r--r--src/theory/uf/tim/theory_uf_tim.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/uf/tim/theory_uf_tim.cpp b/src/theory/uf/tim/theory_uf_tim.cpp
index ef1704426..ae37dfe99 100644
--- a/src/theory/uf/tim/theory_uf_tim.cpp
+++ b/src/theory/uf/tim/theory_uf_tim.cpp
@@ -34,6 +34,11 @@ TheoryUFTim::TheoryUFTim(Context* c, OutputChannel& out, Valuation valuation) :
d_currentPendingIdx(c,0),
d_disequality(c),
d_registered(c) {
+ Warning() << "NOTE:" << std::endl
+ << "NOTE: currently the 'Tim' UF solver is broken," << std::endl
+ << "NOTE: since its registerTerm() function is never" << std::endl
+ << "NOTE: called." << std::endl
+ << "NOTE:" << std::endl;
}
TheoryUFTim::~TheoryUFTim() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback