Version abc80922

This commit is contained in:
Alan Mishchenko
2008-09-22 08:01:00 -07:00
parent 23c428ea09
commit 91effd8148
14 changed files with 512 additions and 28 deletions
+19
View File
@@ -413,6 +413,25 @@ static inline void Vec_IntFillExtra( Vec_Int_t * p, int nSize, int Entry )
p->nSize = nSize;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
static inline void Vec_IntWriteEntryFill( Vec_Int_t * p, int i, int Entry )
{
assert( i >= 0 );
if ( i >= p->nSize )
Vec_IntFillExtra( p, 2 * i, 0 );
Vec_IntWriteEntry( p, i, Entry );
}
/**Function*************************************************************
Synopsis []