From ed695b74ee317a735089956a1698e73b06c7c182 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 4 Jun 2014 17:10:22 -0700 Subject: Adding CEC command &splitprove. --- src/base/abci/abc.c | 2 +- src/proof/cec/cecSplit.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 3c553f93..2323ac36 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -32877,7 +32877,7 @@ usage: int Abc_CommandAbc9SplitProve( Abc_Frame_t * pAbc, int argc, char ** argv ) { extern int Cec_GiaSplitTest( Gia_Man_t * p, int nProcs, int nTimeOut, int nIterMax, int LookAhead, int fVerbose ); - int c, nProcs = 1, nTimeOut = 1, nIterMax = 0, LookAhead = 1, fVerbose = 0; + int c, nProcs = 1, nTimeOut = 10, nIterMax = 0, LookAhead = 1, fVerbose = 0; Extra_UtilGetoptReset(); while ( ( c = Extra_UtilGetopt( argc, argv, "PTILvh" ) ) != EOF ) { diff --git a/src/proof/cec/cecSplit.c b/src/proof/cec/cecSplit.c index b985a994..deeef87e 100644 --- a/src/proof/cec/cecSplit.c +++ b/src/proof/cec/cecSplit.c @@ -361,7 +361,7 @@ static inline void Cec_GiaSplitClean( Vec_Ptr_t * vStack ) ***********************************************************************/ void Cec_GiaSplitPrint( int nIter, int Depth, int nVars, int nConfs, int fStatus, double Prog, abctime clk ) { - printf( "%6d : ", nIter ); + printf( "%4d : ", nIter ); printf( "Depth =%3d ", Depth ); printf( "SatVar =%7d ", nVars ); printf( "SatConf =%7d ", nConfs ); -- cgit v1.2.3