Commit 1c564752 by Alan Mishchenko

Extending predefined limit in &shrink.

parent cb4631e6
...@@ -98,7 +98,7 @@ Shr_Man_t * Shr_ManAlloc( Gia_Man_t * pGia ) ...@@ -98,7 +98,7 @@ Shr_Man_t * Shr_ManAlloc( Gia_Man_t * pGia )
Shr_Man_t * p; Shr_Man_t * p;
p = ABC_CALLOC( Shr_Man_t, 1 ); p = ABC_CALLOC( Shr_Man_t, 1 );
p->nDivMax = 64; p->nDivMax = 64;
p->nNewSize = 3 * Gia_ManObjNum(pGia) / 2; p->nNewSize = 2 * Gia_ManObjNum(pGia);
p->pGia = pGia; p->pGia = pGia;
p->vFanMem = Vec_WrdAlloc( 1000 ); Vec_WrdPush(p->vFanMem, -1); p->vFanMem = Vec_WrdAlloc( 1000 ); Vec_WrdPush(p->vFanMem, -1);
p->vObj2Fan = Vec_IntStart( p->nNewSize ); p->vObj2Fan = Vec_IntStart( p->nNewSize );
......
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