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
+1 -2
View File
@@ -39,8 +39,7 @@
typedef struct Abc_Fan_t_ Abc_Fan_t;
struct Abc_Fan_t_ // 1 word
{
unsigned iFan : 24; // the ID of the object
unsigned nLats : 7; // the number of latches (up to 127)
unsigned iFan : 31; // the ID of the object
unsigned fCompl : 1; // the complemented attribute
};
+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 []