summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/theory_quantifiers.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-07-22 14:29:28 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-07-22 14:29:38 -0500
commitbdb5789713c03cf16f0ce6178b2fdc66f96ddc9e (patch)
treed898e2b126b425641342626a625bb8d470985f1b /src/theory/quantifiers/theory_quantifiers.cpp
parent41c6b7593504671873b25040d806ad1e50c37093 (diff)
Bug fix for --fmf-fmc for non-uninterpreted sort quantifiers, added infrastructure to BV collectModelInfo in preparation for bug fix.
Diffstat (limited to 'src/theory/quantifiers/theory_quantifiers.cpp')
-rw-r--r--src/theory/quantifiers/theory_quantifiers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/theory_quantifiers.cpp b/src/theory/quantifiers/theory_quantifiers.cpp
index c68623baa..52c9e34f3 100644
--- a/src/theory/quantifiers/theory_quantifiers.cpp
+++ b/src/theory/quantifiers/theory_quantifiers.cpp
@@ -163,7 +163,7 @@ void TheoryQuantifiers::assertExistential( Node n ){
NodeBuilder<> nb(kind::OR);
nb << n[0] << body.notNode();
Node lem = nb;
- Debug("quantifiers-sk") << "Skolemize lemma : " << lem << std::endl;
+ Trace("quantifiers-sk") << "Skolemize lemma : " << lem << std::endl;
d_out->lemma( lem );
d_skolemized[n] = true;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback