Increasing the size of pre-allocated memory in &syn2.

This commit is contained in:
Alan Mishchenko 2014-08-11 18:34:14 -07:00
parent 68ce0bc1c1
commit 0722dde6f9
1 changed files with 1 additions and 1 deletions

View File

@ -699,7 +699,7 @@ Gia_Man_t * Dam_ManMultiAig( Dam_Man_t * pMan )
Gia_Obj_t * pObj;
int i;
// start the new manager
pNew = Gia_ManStart( Gia_ManObjNum(p) );
pNew = Gia_ManStart( 2*Gia_ManObjNum(p) );
pNew->pName = Abc_UtilStrsav( p->pName );
pNew->pSpec = Abc_UtilStrsav( p->pSpec );
pNew->pMuxes = ABC_CALLOC( unsigned, pNew->nObjsAlloc );