diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-06-04 17:10:22 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-06-04 17:10:22 -0700 |
commit | ed695b74ee317a735089956a1698e73b06c7c182 (patch) | |
tree | 09139be799fa34cb8138032db1eeecef18e30b2b /src | |
parent | 87143c1182334b51c6e1b7c5b6c7004ac1c7825f (diff) | |
download | abc-ed695b74ee317a735089956a1698e73b06c7c182.tar.gz abc-ed695b74ee317a735089956a1698e73b06c7c182.tar.bz2 abc-ed695b74ee317a735089956a1698e73b06c7c182.zip |
Adding CEC command &splitprove.
Diffstat (limited to 'src')
-rw-r--r-- | src/base/abci/abc.c | 2 | ||||
-rw-r--r-- | 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 ); |