From ce3f8cb1d11b7b39fa48f809baa1419e9984fe8c Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Thu, 1 Nov 2012 02:53:09 -0700 Subject: Improvements to the truth table computations. --- src/base/abci/abcNpn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/base/abci/abcNpn.c') diff --git a/src/base/abci/abcNpn.c b/src/base/abci/abcNpn.c index 06732d2b..759d91b3 100644 --- a/src/base/abci/abcNpn.c +++ b/src/base/abci/abcNpn.c @@ -202,10 +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 ); + extern void Abc_TtCofactorTest( word * pTruth, int nVars, int i ); if ( fVerbose ) printf( "%7d : ", i ); - Abc_TtConfactorTest( p->pFuncs[i], p->nVars, i ); + Abc_TtCofactorTest( p->pFuncs[i], p->nVars, i ); if ( fVerbose ) Extra_PrintHex( stdout, (unsigned *)p->pFuncs[i], p->nVars ), printf( "\n" ); } -- cgit v1.2.3