Version abc51121

This commit is contained in:
Alan Mishchenko
2005-11-21 08:01:00 -08:00
parent 69643dfe92
commit 08d2b31046
23 changed files with 425 additions and 179 deletions
+17
View File
@@ -296,6 +296,23 @@ static inline void Vec_IntWriteEntry( Vec_Int_t * p, int i, int Entry )
p->pArray[i] = Entry;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
static inline void Vec_IntAddToEntry( Vec_Int_t * p, int i, int Addition )
{
assert( i >= 0 && i < p->nSize );
p->pArray[i] += Addition;
}
/**Function*************************************************************
Synopsis []