summaryrefslogtreecommitdiff
path: root/src/proof/proof_manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/proof_manager.cpp')
-rw-r--r--src/proof/proof_manager.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/proof/proof_manager.cpp b/src/proof/proof_manager.cpp
index cb6eee330..835990613 100644
--- a/src/proof/proof_manager.cpp
+++ b/src/proof/proof_manager.cpp
@@ -515,18 +515,16 @@ void LFSCProof::toStream(std::ostream& out) {
out << " ;; Printing deferred declarations \n\n";
d_theoryProof->printDeferredDeclarations(out, paren);
+ out << "\n ;; Printing the global let map";
d_theoryProof->finalizeBvConflicts(used_lemmas, out);
ProofManager::getBitVectorProof()->calculateAtomsInBitblastingProof();
-
- out << "\n ;; Printing the global let map \n";
-
ProofLetMap globalLetMap;
if (options::lfscLetification()) {
ProofManager::currentPM()->printGlobalLetMap(atoms, globalLetMap, out, paren);
}
out << " ;; Printing aliasing declarations \n\n";
- d_theoryProof->printAliasingDeclarations(out, paren);
+ d_theoryProof->printAliasingDeclarations(out, paren, globalLetMap);
out << " ;; Rewrites for Lemmas \n";
d_theoryProof->printLemmaRewrites(rewrites, out, paren);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback