Simple BDD package.

This commit is contained in:
Alan Mishchenko 2018-05-23 22:46:56 +09:00
parent e68c6c6281
commit 3697bdbe43
3 changed files with 8 additions and 1 deletions

View File

@ -3663,6 +3663,10 @@ SOURCE=.\src\misc\extra\extraUtilMisc.c
# End Source File
# Begin Source File
SOURCE=.\src\misc\extra\extraUtilMult.c
# End Source File
# Begin Source File
SOURCE=.\src\misc\extra\extraUtilPerm.c
# End Source File
# Begin Source File

View File

@ -44828,7 +44828,8 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// extern void Gia_ManCheckFalseTest( Gia_Man_t * p, int nSlackMax );
// extern void Gia_ParTest( Gia_Man_t * p, int nWords, int nProcs );
// extern void Gia_ManTisTest( Gia_Man_t * pInit );
extern void Gia_StoComputeCuts( Gia_Man_t * p );
// extern void Gia_StoComputeCuts( Gia_Man_t * p );
extern void Abc_BddGiaTest( Gia_Man_t * pGia, int fVerbose );
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "WPFsvh" ) ) != EOF )
@ -44945,6 +44946,7 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
*/
// pTemp = Slv_ManToAig( pAbc->pGia );
// Abc_FrameUpdateGia( pAbc, pTemp );
Abc_BddGiaTest( pAbc->pGia, fVerbose );
return 0;
usage:
Abc_Print( -2, "usage: &test [-FW num] [-svh]\n" );

View File

@ -6,6 +6,7 @@ SRC += src/misc/extra/extraUtilBitMatrix.c \
src/misc/extra/extraUtilFile.c \
src/misc/extra/extraUtilMemory.c \
src/misc/extra/extraUtilMisc.c \
src/misc/extra/extraUtilMult.c \
src/misc/extra/extraUtilPerm.c \
src/misc/extra/extraUtilProgress.c \
src/misc/extra/extraUtilReader.c \