diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-04-27 22:38:01 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-04-27 22:38:01 -0700 |
commit | 17a0d944b305cbadeb2bbbcdd7ef3c82b50c3c7a (patch) | |
tree | 4b2335e0e9e2cc797e18b86d9cde2d8efa6483b6 /src/proof/ssc/sscInt.h | |
parent | 613e8b2ad6b24369467179b15c2ab2638f9b8672 (diff) | |
download | abc-17a0d944b305cbadeb2bbbcdd7ef3c82b50c3c7a.tar.gz abc-17a0d944b305cbadeb2bbbcdd7ef3c82b50c3c7a.tar.bz2 abc-17a0d944b305cbadeb2bbbcdd7ef3c82b50c3c7a.zip |
SAT sweeping under constraints.
Diffstat (limited to 'src/proof/ssc/sscInt.h')
-rw-r--r-- | src/proof/ssc/sscInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proof/ssc/sscInt.h b/src/proof/ssc/sscInt.h index 7e710c19..f0a556a6 100644 --- a/src/proof/ssc/sscInt.h +++ b/src/proof/ssc/sscInt.h @@ -64,6 +64,7 @@ struct Ssc_Man_t_ Vec_Int_t * vPattern; // counter-example Vec_Int_t * vDisPairs; // disproved pairs // SAT calls statistics + int nSimRounds; // the number of simulation rounds int nRecycles; // the number of times SAT solver was recycled int nCallsSince; // the number of calls since the last recycle int nSatCalls; // the number of SAT calls @@ -74,6 +75,7 @@ struct Ssc_Man_t_ clock_t timeSimInit; // simulation and class computation clock_t timeSimSat; // simulation of the counter-examples clock_t timeCnfGen; // generation of CNF + clock_t timeSat; // total SAT time clock_t timeSatSat; // sat clock_t timeSatUnsat; // unsat clock_t timeSatUndec; // undecided |