Changes for delay-oriented computation.

This commit is contained in:
Alan Mishchenko
2015-10-24 18:53:18 -07:00
parent a43d8273b7
commit 45bf632452
7 changed files with 138 additions and 58 deletions
+1 -1
View File
@@ -286,7 +286,7 @@ static inline void Vec_WecPush( Vec_Wec_t * p, int Level, int Entry )
{
if ( p->nSize < Level + 1 )
{
Vec_WecGrow( p, Abc_MaxInt(2*p->nCap, Level + 1) );
Vec_WecGrow( p, Abc_MaxInt(2*p->nSize, Level + 1) );
p->nSize = Level + 1;
}
Vec_IntPush( Vec_WecEntry(p, Level), Entry );