summaryrefslogtreecommitdiff
path: root/src/proof
diff options
context:
space:
mode:
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