From 419dd36f91715808ab0e80607c3a57dd66db4523 Mon Sep 17 00:00:00 2001 From: trevor_hansen Date: Sat, 31 Jul 2010 13:26:37 +0000 Subject: [PATCH] Bugfix. Oops. When using the quick statistics (the -t option), record the time spent generating the CNF. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@963 e59a4935-1847-0410-ae03-e826735625c1 --- src/to-sat/AIG/ToSATAIG.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/to-sat/AIG/ToSATAIG.cpp b/src/to-sat/AIG/ToSATAIG.cpp index 33a15dc..801f993 100644 --- a/src/to-sat/AIG/ToSATAIG.cpp +++ b/src/to-sat/AIG/ToSATAIG.cpp @@ -23,7 +23,9 @@ namespace BEEV Cnf_Dat_t* cnfData = NULL; + bm->GetRunTimes()->start(RunTimes::CNFConversion); mgr.toCNF(BBFormula, cnfData, nodeToSATVar); + bm->GetRunTimes()->stop(RunTimes::CNFConversion); // Free the memory in the AIGs. BBFormula = BBNodeAIG(); // null node -- 2.47.3