summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2021-05-08 20:10:44 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2021-05-08 20:10:44 -0700
commit76bed2055cc171109a86bf56c6da00aa4d251a30 (patch)
treed4453ed54592f0836e8a4af12188bcb25299eb16 /src/base
parent17476146caa0184f908cfc908520375d788a8ba1 (diff)
downloadabc-76bed2055cc171109a86bf56c6da00aa4d251a30.tar.gz
abc-76bed2055cc171109a86bf56c6da00aa4d251a30.tar.bz2
abc-76bed2055cc171109a86bf56c6da00aa4d251a30.zip
Updating LUT synthesis code.
Diffstat (limited to 'src/base')
-rw-r--r--src/base/abci/abc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index f1e09980..15a4857b 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -48456,6 +48456,7 @@ usage:
***********************************************************************/
int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
{
+ extern void Gia_ManSimInfoTryTest( Gia_Man_t * p, int fSmall );
extern void Gia_RsbEnumerateWindows( Gia_Man_t * p, int nInputsMax, int nLevelsMax );
extern int Gia_ManSumTotalOfSupportSizes( Gia_Man_t * p );
int c, fVerbose = 0;
@@ -48519,8 +48520,8 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// return 1;
// }
// Abc_FrameUpdateGia( pAbc, Abc_Procedure(pAbc->pGia) );
-// Gia_ManTryResub( pAbc->pGia );
- printf( "AIG in \"%s\" has the sum of output support sizes equal to %d.\n", pAbc->pGia->pSpec, Gia_ManSumTotalOfSupportSizes(pAbc->pGia) );
+ Gia_ManSimInfoTryTest( pAbc->pGia, fSwitch );
+// printf( "AIG in \"%s\" has the sum of output support sizes equal to %d.\n", pAbc->pGia->pSpec, Gia_ManSumTotalOfSupportSizes(pAbc->pGia) );
return 0;
usage:
Abc_Print( -2, "usage: &test [-FW num] [-svh]\n" );