Simple version of ECO.

This commit is contained in:
Alan Mishchenko 2014-05-21 12:40:20 +09:00
parent fb10d54bf5
commit 368de31ae2
2 changed files with 9 additions and 2 deletions

View File

@ -10461,9 +10461,14 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
}
*/
{
extern void Abc_EnumerateFuncs( int nDecMax, int nDivMax, int fVerbose );
Abc_EnumerateFuncs( nDecMax, nDivMax, fVerbose );
// extern void Abc_EnumerateFuncs( int nDecMax, int nDivMax, int fVerbose );
// Abc_EnumerateFuncs( nDecMax, nDivMax, fVerbose );
}
{
extern void Bmc_EcoMiterTest();
Bmc_EcoMiterTest();
}
/*
if ( pNtk )
{
extern Abc_Ntk_t * Abc_NtkBarBufsOnOffTest( Abc_Ntk_t * pNtk );
@ -10475,6 +10480,7 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
}
Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes );
}
*/
return 0;
usage:
Abc_Print( -2, "usage: test [-CKDN] [-aovwh] <file_name>\n" );

View File

@ -10,6 +10,7 @@ SRC += src/sat/bmc/bmcBCore.c \
src/sat/bmc/bmcCexMin1.c \
src/sat/bmc/bmcCexMin2.c \
src/sat/bmc/bmcCexTools.c \
src/sat/bmc/bmcEco.c \
src/sat/bmc/bmcFault.c \
src/sat/bmc/bmcICheck.c \
src/sat/bmc/bmcInse.c \