diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2021-05-11 15:04:15 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2021-05-11 15:04:15 -0700 |
commit | aa9fe1f24094d0423cc32cbd6e9682ea2a3935cb (patch) | |
tree | 33a773bf2a80f88d071719b2f3232d0cc3a4b885 /src/base/io | |
parent | 76bed2055cc171109a86bf56c6da00aa4d251a30 (diff) | |
download | abc-aa9fe1f24094d0423cc32cbd6e9682ea2a3935cb.tar.gz abc-aa9fe1f24094d0423cc32cbd6e9682ea2a3935cb.tar.bz2 abc-aa9fe1f24094d0423cc32cbd6e9682ea2a3935cb.zip |
Updating LUT synthesis code.
Diffstat (limited to 'src/base/io')
-rw-r--r-- | src/base/io/ioWriteBench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/io/ioWriteBench.c b/src/base/io/ioWriteBench.c index 81d64582..23de719e 100644 --- a/src/base/io/ioWriteBench.c +++ b/src/base/io/ioWriteBench.c @@ -259,7 +259,7 @@ int Io_WriteBenchLutOneNode( FILE * pFile, Abc_Obj_t * pNode, Vec_Int_t * vTruth int i, nFanins; assert( Abc_ObjIsNode(pNode) ); nFanins = Abc_ObjFaninNum(pNode); - assert( nFanins <= 8 ); + assert( nFanins <= 15 ); // compute the truth table pTruth = Hop_ManConvertAigToTruth( (Hop_Man_t *)pNode->pNtk->pManFunc, Hop_Regular((Hop_Obj_t *)pNode->pData), nFanins, vTruth, 0 ); if ( Hop_IsComplement((Hop_Obj_t *)pNode->pData) ) |