diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2017-08-13 15:19:49 +0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2017-08-13 15:19:49 +0700 |
commit | 8ae4ed5de53b2be8a54ac586337aec4a91a552b0 (patch) | |
tree | 8e2a6afd39771bfc9e7dfb7e54781f18a06db840 /src/sat | |
parent | fe6cb9e891f55e9478d8444ce64fc0cb673bd989 (diff) | |
download | abc-8ae4ed5de53b2be8a54ac586337aec4a91a552b0.tar.gz abc-8ae4ed5de53b2be8a54ac586337aec4a91a552b0.tar.bz2 abc-8ae4ed5de53b2be8a54ac586337aec4a91a552b0.zip |
Experiments with BMC.
Diffstat (limited to 'src/sat')
-rw-r--r-- | src/sat/bmc/bmcBmcS.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sat/bmc/bmcBmcS.c b/src/sat/bmc/bmcBmcS.c index 170b0318..21179457 100644 --- a/src/sat/bmc/bmcBmcS.c +++ b/src/sat/bmc/bmcBmcS.c @@ -473,7 +473,7 @@ Gia_Man_t * Bmcs_ManUnfold( Bmcs_Man_t * p, int f ) // create a clean copy of the new nodes of this timeframe Vec_IntFillExtra( &p->vFr2Sat, Gia_ManObjNum(p->pFrames), -1 ); Vec_IntFillExtra( &p->pFrames->vCopies, Gia_ManObjNum(p->pFrames), -1 ); - assert( Vec_IntCountEntry(&p->pFrames->vCopies, -1) == Vec_IntSize(&p->pFrames->vCopies) ); + //assert( Vec_IntCountEntry(&p->pFrames->vCopies, -1) == Vec_IntSize(&p->pFrames->vCopies) ); Gia_ManStopP( &p->pClean ); p->pClean = Gia_ManStart( Gia_ManObjNum(p->pFrames) - nFrameObjs + 1000 ); Gia_ObjSetCopyArray( p->pFrames, 0, 0 ); |