summaryrefslogtreecommitdiff
path: root/src/proof
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2018-12-17 14:11:37 -0800
committerGitHub <noreply@github.com>2018-12-17 14:11:37 -0800
commit332357104e9ab1937049f0ea8e53042d8534f966 (patch)
treeb92d9dd2fa7d01fa342d35fa6fccfea14ceb9514 /src/proof
parentbc40c176eb1205452e824ec9d89dc9a7c76cbd67 (diff)
New C++ API: Add tests for term object. (#2755)
Diffstat (limited to 'src/proof')
-rw-r--r--src/proof/bitvector_proof.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/bitvector_proof.cpp b/src/proof/bitvector_proof.cpp
index 9eb39e2e2..ba3533cc3 100644
--- a/src/proof/bitvector_proof.cpp
+++ b/src/proof/bitvector_proof.cpp
@@ -68,7 +68,7 @@ void BitVectorProof::registerAtomBB(Expr atom, Expr atom_bb) {
Debug("pf::bv") << "BitVectorProof::registerAtomBB( " << atom
<< ", " << atom_bb << " )" << std::endl;
- Expr def = atom.iffExpr(atom_bb);
+ Expr def = atom.eqExpr(atom_bb);
d_bbAtoms.insert(std::make_pair(atom, def));
registerTerm(atom);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback