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.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/proof/proof_manager.cpp b/src/proof/proof_manager.cpp
index 0ae020090..b90d589b8 100644
--- a/src/proof/proof_manager.cpp
+++ b/src/proof/proof_manager.cpp
@@ -153,22 +153,23 @@ void ProofManager::initCnfProof(prop::CnfStream* cnfStream,
}
-void ProofManager::initTheoryProofEngine(SmtGlobals* globals) {
+void ProofManager::initTheoryProofEngine() {
Assert (currentPM()->d_theoryProof == NULL);
Assert (currentPM()->d_format == LFSC);
- currentPM()->d_theoryProof = new LFSCTheoryProofEngine(globals);
+ currentPM()->d_theoryProof = new LFSCTheoryProofEngine();
}
std::string ProofManager::getInputClauseName(ClauseId id,
const std::string& prefix) {
return append(prefix+".pb", id);
}
+
std::string ProofManager::getLemmaClauseName(ClauseId id,
const std::string& prefix) {
return append(prefix+".lemc", id);
}
- std::string ProofManager::getLemmaName(ClauseId id,
- const std::string& prefix) {
+
+std::string ProofManager::getLemmaName(ClauseId id, const std::string& prefix) {
return append(prefix+"lem", id);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback