Commit 5f77e7ae by Alan Mishchenko

Bug fix in saving AIG attributes in &save and &load.

parent 8095c2d1
...@@ -624,6 +624,12 @@ Gia_Man_t * Gia_ManDupWithAttributes( Gia_Man_t * p ) ...@@ -624,6 +624,12 @@ Gia_Man_t * Gia_ManDupWithAttributes( Gia_Man_t * p )
pNew->pAigExtra = Gia_ManDup( p->pAigExtra ); pNew->pAigExtra = Gia_ManDup( p->pAigExtra );
if ( p->nAnd2Delay ) if ( p->nAnd2Delay )
pNew->nAnd2Delay = p->nAnd2Delay; pNew->nAnd2Delay = p->nAnd2Delay;
if ( p->vRegClasses )
pNew->vRegClasses = Vec_IntDup( p->vRegClasses );
if ( p->vConfigs )
pNew->vConfigs = Vec_IntDup( p->vConfigs );
if ( p->pCellStr )
pNew->pCellStr = Abc_UtilStrsav( p->pCellStr );
return pNew; return pNew;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment