summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-01-14 18:05:12 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-01-14 18:05:12 -0800
commitc7e215ca3150ae54cb6232ef9749e2218e4ae096 (patch)
tree78af930e6d11a4ed3b6301defefdd1903fa1639d /src/base/abci
parent9c409addca12e478cff38cb60a37a7ce03b34e61 (diff)
downloadabc-c7e215ca3150ae54cb6232ef9749e2218e4ae096.tar.gz
abc-c7e215ca3150ae54cb6232ef9749e2218e4ae096.tar.bz2
abc-c7e215ca3150ae54cb6232ef9749e2218e4ae096.zip
New hierarchy manager.
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abc.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 070ffbd9..77d165ba 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -8928,12 +8928,16 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
extern void Aig_ManInterRepar( Aig_Man_t * pMan, int fVerbose );
extern Aig_Man_t * Abc_NtkToDar( Abc_Ntk_t * pNtk, int fExors, int fRegisters );
extern void Aig_ManSupportsTest( Aig_Man_t * pMan );
+ extern int Aig_SupportSizeTest( Aig_Man_t * pMan );
+ extern int Abc_NtkSuppSizeTest( Abc_Ntk_t * p );
if ( pNtk )
{
Aig_Man_t * pAig = Abc_NtkToDar( pNtk, 0, 1 );
// Aig_ManInterRepar( pAig, 1 );
// Aig_ManInterTest( pAig, 1 );
- Aig_ManSupportsTest( pAig );
+// Aig_ManSupportsTest( pAig );
+// Aig_SupportSizeTest( pAig );
+ Abc_NtkSuppSizeTest( pNtk );
Aig_ManStop( pAig );
}
}
@@ -30323,6 +30327,7 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
int fSwitch = 0;
// extern Gia_Man_t * Gia_VtaTest( Gia_Man_t * p );
extern void Gia_VtaTest( Gia_Man_t * p, int nFramesMax, int nConfMax, int nTimeMax, int fVerbose );
+ extern int Gia_ManSuppSizeTest( Gia_Man_t * p );
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "svh" ) ) != EOF )
@@ -30359,7 +30364,8 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// pAbc->pGia = Gia_VtaTest( pTemp = pAbc->pGia );
// Gia_ManStopP( &pTemp );
- Gia_VtaTest( pAbc->pGia, 100000, 0, 0, 1 );
+// Gia_VtaTest( pAbc->pGia, 100000, 0, 0, 1 );
+ Gia_ManSuppSizeTest( pAbc->pGia );
return 0;