summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-05-27 17:48:17 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-05-27 17:48:17 -0700
commitc50c1fc662a2068227e9f39817a6bf499a0efb29 (patch)
tree728a9c6ad677a561d2cecfa46e6762b26e97cfa3 /src/base/abci/abc.c
parent37077748a1e421f2fa9385a159ef668b3e117927 (diff)
downloadabc-c50c1fc662a2068227e9f39817a6bf499a0efb29.tar.gz
abc-c50c1fc662a2068227e9f39817a6bf499a0efb29.tar.bz2
abc-c50c1fc662a2068227e9f39817a6bf499a0efb29.zip
Multiplexer profiling.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index f053f5c6..43200002 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -32070,8 +32070,9 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// extern Gia_Man_t * Gia_ManOptimizeRing( Gia_Man_t * p );
// extern void Gia_ManCollectSeqTest( Gia_Man_t * p );
// extern Gia_Man_t * Gia_SweeperFraigTest( Gia_Man_t * p, int nWords, int nConfs, int fVerbose );
- extern Gia_Man_t * Bmc_CexDepthTest( Gia_Man_t * p, Abc_Cex_t * pCex, int nFrames, int fVerbose );
- extern Gia_Man_t * Bmc_CexTarget( Gia_Man_t * p, int nFrames );
+// extern Gia_Man_t * Bmc_CexDepthTest( Gia_Man_t * p, Abc_Cex_t * pCex, int nFrames, int fVerbose );
+// extern Gia_Man_t * Bmc_CexTarget( Gia_Man_t * p, int nFrames );
+ extern void Gia_ManMuxProfiling( Gia_Man_t * p );
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "Fsvh" ) ) != EOF )
@@ -32138,9 +32139,10 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// pTemp = Gia_ManOptimizeRing( pAbc->pGia );
// pTemp = Gia_SweeperFraigTest( pAbc->pGia, 4, 1000, 0 );
// Abc_FrameUpdateGia( pAbc, pTemp );
- pTemp = Bmc_CexDepthTest( pAbc->pGia, pAbc->pCex, nFrames, fVerbose );
+// pTemp = Bmc_CexDepthTest( pAbc->pGia, pAbc->pCex, nFrames, fVerbose );
// pTemp = Bmc_CexTarget( pAbc->pGia, nFrames );
- Abc_FrameUpdateGia( pAbc, pTemp );
+// Abc_FrameUpdateGia( pAbc, pTemp );
+ Gia_ManMuxProfiling( pAbc->pGia );
return 0;
usage:
Abc_Print( -2, "usage: &test [-F num] [-svh]\n" );