summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/alpha_equivalence.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-09-18 00:04:26 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-09-18 00:04:26 +0200
commit1aaf70f23d8f2061e5c05ca98d12deea06494a25 (patch)
tree5e8d5c889930cfe368c26c0211a8d3c4ed162004 /src/theory/quantifiers/alpha_equivalence.cpp
parent548582b252170f35a602705a109d88a608611cca (diff)
Allow most smt2 commands as sygus commands. Fix bug in fmf-fun regarding quantified formulas with non-constant polarity.
Diffstat (limited to 'src/theory/quantifiers/alpha_equivalence.cpp')
-rwxr-xr-xsrc/theory/quantifiers/alpha_equivalence.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/quantifiers/alpha_equivalence.cpp b/src/theory/quantifiers/alpha_equivalence.cpp
index 84bf2ec14..b72f15a01 100755
--- a/src/theory/quantifiers/alpha_equivalence.cpp
+++ b/src/theory/quantifiers/alpha_equivalence.cpp
@@ -55,9 +55,9 @@ bool AlphaEquivalenceNode::registerNode( AlphaEquivalenceNode* aen, QuantifiersE
return true;
}else{
//lemma ( q <=> d_quant )
- Trace("alpha-eq") << "Alpha equivalent : " << std::endl;
- Trace("alpha-eq") << " " << q << std::endl;
- Trace("alpha-eq") << " " << aen->d_quant << std::endl;
+ Trace("quant-ae") << "Alpha equivalent : " << std::endl;
+ Trace("quant-ae") << " " << q << std::endl;
+ Trace("quant-ae") << " " << aen->d_quant << std::endl;
qe->getOutputChannel().lemma( q.iffNode( aen->d_quant ) );
return false;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback