summaryrefslogtreecommitdiff
path: root/src/theory/sep/theory_sep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sep/theory_sep.cpp')
-rw-r--r--src/theory/sep/theory_sep.cpp20
1 files changed, 1 insertions, 19 deletions
diff --git a/src/theory/sep/theory_sep.cpp b/src/theory/sep/theory_sep.cpp
index 7fe86d86d..47eac5359 100644
--- a/src/theory/sep/theory_sep.cpp
+++ b/src/theory/sep/theory_sep.cpp
@@ -656,25 +656,7 @@ void TheorySep::postCheck(Effort level)
}
if (Trace.isOn("sep-eqc"))
{
- eq::EqClassesIterator eqcs2_i = eq::EqClassesIterator(d_equalityEngine);
- Trace("sep-eqc") << "EQC:" << std::endl;
- while (!eqcs2_i.isFinished())
- {
- Node eqc = (*eqcs2_i);
- eq::EqClassIterator eqc2_i = eq::EqClassIterator(eqc, d_equalityEngine);
- Trace("sep-eqc") << "Eqc( " << eqc << " ) : { ";
- while (!eqc2_i.isFinished())
- {
- if ((*eqc2_i) != eqc)
- {
- Trace("sep-eqc") << (*eqc2_i) << " ";
- }
- ++eqc2_i;
- }
- Trace("sep-eqc") << " } " << std::endl;
- ++eqcs2_i;
- }
- Trace("sep-eqc") << std::endl;
+ Trace("sep-eqc") << d_equalityEngine->debugPrintEqc();
}
bool addedLemma = false;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback