diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-02-11 13:57:57 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-02-11 13:57:57 -0800 |
commit | bef084bd9bd09026ae03c787444e1cdbded89313 (patch) | |
tree | 7fff06dc5030f0afb5cf812d0dcfaa0bde4a5fe2 | |
parent | 78aed3f6d5b0ad85bca43c48cac53b6033e8f542 (diff) | |
download | abc-bef084bd9bd09026ae03c787444e1cdbded89313.tar.gz abc-bef084bd9bd09026ae03c787444e1cdbded89313.tar.bz2 abc-bef084bd9bd09026ae03c787444e1cdbded89313.zip |
Bug fix in setting the number of finished frames when reading a status file.
-rw-r--r-- | src/base/abci/abcLog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/abci/abcLog.c b/src/base/abci/abcLog.c index 615584a1..071d7943 100644 --- a/src/base/abci/abcLog.c +++ b/src/base/abci/abcLog.c @@ -85,7 +85,7 @@ void Abc_NtkWriteLogFile( char * pFileName, Abc_Cex_t * pCex, int Status, int nF printf( "Abc_NtkWriteLogFile(): Cannot recognize solving status.\n" ); fprintf( pFile, " " ); // write <cyc> - fprintf( pFile, "%d", pCex ? pCex->iFrame + 1 : nFrames ); + fprintf( pFile, "%d", pCex ? pCex->iFrame : nFrames ); fprintf( pFile, " " ); // write <engine_name> fprintf( pFile, "%s", pCommand ? pCommand : "unknown" ); |