diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-04-27 08:26:40 +0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-04-27 08:26:40 +0700 |
commit | ce03d5ab28d42c1ce357663590fb0f9795174079 (patch) | |
tree | 665927596d54f7faed04f306e9425c21bddd5dc3 /src | |
parent | 5f5dda903080fed09f109655ae6b622a1f503d09 (diff) | |
download | abc-ce03d5ab28d42c1ce357663590fb0f9795174079.tar.gz abc-ce03d5ab28d42c1ce357663590fb0f9795174079.tar.bz2 abc-ce03d5ab28d42c1ce357663590fb0f9795174079.zip |
Writing status file vta.status when dumping intermediate abstraction in &vta.
Diffstat (limited to 'src')
-rw-r--r-- | src/aig/gia/giaAbsVta.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/aig/gia/giaAbsVta.c b/src/aig/gia/giaAbsVta.c index 60ef85ad..5aeca72e 100644 --- a/src/aig/gia/giaAbsVta.c +++ b/src/aig/gia/giaAbsVta.c @@ -1608,7 +1608,9 @@ int Gia_VtaPerformInt( Gia_Man_t * pAig, Gia_ParVta_t * pPars ) // dump the model if ( p->pPars->fDumpVabs && (f & 1) ) { - Abc_FrameSetNFrames( f ); + Abc_FrameSetCex( NULL ); + Abc_FrameSetNFrames( f+1 ); + Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "write_status vta.status" ); Gia_VtaDumpAbsracted( p, pPars->fVerbose ); } // check if the number of objects is below limit |