From 0fafe786aed1f5977b204cc3ca490659a5c182fb Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Tue, 30 Oct 2012 22:25:45 -0700 Subject: Improvements to the truth table computations. --- src/base/abci/abcNpn.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/base') diff --git a/src/base/abci/abcNpn.c b/src/base/abci/abcNpn.c index 0e3f41f9..06732d2b 100644 --- a/src/base/abci/abcNpn.c +++ b/src/base/abci/abcNpn.c @@ -202,8 +202,10 @@ void Abc_TruthNpnPerform( Abc_TtStore_t * p, int NpnType, int fVerbose ) { for ( i = 0; i < p->nFuncs; i++ ) { + extern void Abc_TtConfactorTest( word * pTruth, int nVars, int i ); if ( fVerbose ) printf( "%7d : ", i ); + Abc_TtConfactorTest( p->pFuncs[i], p->nVars, i ); if ( fVerbose ) Extra_PrintHex( stdout, (unsigned *)p->pFuncs[i], p->nVars ), printf( "\n" ); } -- cgit v1.2.3