diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-03-11 20:18:02 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-03-11 20:18:02 -0800 |
commit | a4aaf110adca0fd9175b90c163d21455fa2d0210 (patch) | |
tree | b006a18c4b052481c9dda35f6a478dbf71e1301f /src/base/abci/abc.c | |
parent | 759c6596a51eda2b02d2b79c1ee428cbe4a44061 (diff) | |
download | abc-a4aaf110adca0fd9175b90c163d21455fa2d0210.tar.gz abc-a4aaf110adca0fd9175b90c163d21455fa2d0210.tar.bz2 abc-a4aaf110adca0fd9175b90c163d21455fa2d0210.zip |
Exploration of Sasao's decomposition and minor improvements.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r-- | src/base/abci/abc.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index e158a286..9d30fee8 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -8665,9 +8665,9 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv ) */ /* -// Bbl_ManSimpleDemo(); -// pNtkRes = Abc_NtkCRetime( pNtk ); - pNtkRes = NULL; +{ + extern Abc_Ntk_t * Abc_NtkBddDec( Abc_Ntk_t * pNtk, int fVerbose ); + pNtkRes = Abc_NtkBddDec( pNtk, fVerbose ); if ( pNtkRes == NULL ) { Abc_Print( -1, "Command has failed.\n" ); @@ -8675,11 +8675,19 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv ) } // replace the current network Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes ); +} */ +// Abc_NtkCheckAbsorb( pNtk, 4 ); + + if ( fBmc ) + Abc_NktMffcServerTest( pNtk ); + else + Abc_ResPartitionTest( pNtk ); + // Abc_NtkHelloWorld( pNtk ); // Abc_NktMffcTest( pNtk ); - Abc_NktMffcServerTest( pNtk ); +// Abc_NktMffcServerTest( pNtk ); return 0; usage: Abc_Print( -2, "usage: test [-h] <file_name>\n" ); |