summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-02-19 13:33:21 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-02-19 13:33:21 -0800
commitea13085fe34bed2e827fe8ec6fb7e24c6e1a5d8f (patch)
treecf0dd47d29716f6ef34baca85a6c1b9514567b5a /src/base/abci/abc.c
parentc2b2e99284727cc0b1c8122b267746cf598846ab (diff)
downloadabc-ea13085fe34bed2e827fe8ec6fb7e24c6e1a5d8f.tar.gz
abc-ea13085fe34bed2e827fe8ec6fb7e24c6e1a5d8f.tar.bz2
abc-ea13085fe34bed2e827fe8ec6fb7e24c6e1a5d8f.zip
Added printout of BMC tents in &ps.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 8bf1c60e..15e314db 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -22031,11 +22031,15 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
{
int c;
int fSwitch = 0;
+ int fTents = 0;
Extra_UtilGetoptReset();
- while ( ( c = Extra_UtilGetopt( argc, argv, "ph" ) ) != EOF )
+ while ( ( c = Extra_UtilGetopt( argc, argv, "tph" ) ) != EOF )
{
switch ( c )
{
+ case 't':
+ fTents ^= 1;
+ break;
case 'p':
fSwitch ^= 1;
break;
@@ -22050,12 +22054,13 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -1, "Abc_CommandAbc9Ps(): There is no AIG.\n" );
return 1;
}
- Gia_ManPrintStats( pAbc->pGia, fSwitch );
+ Gia_ManPrintStats( pAbc->pGia, fTents, fSwitch );
return 0;
usage:
- Abc_Print( -2, "usage: &ps [-ph]\n" );
+ Abc_Print( -2, "usage: &ps [-tph]\n" );
Abc_Print( -2, "\t prints stats of the current AIG\n" );
+ Abc_Print( -2, "\t-t : toggle printing BMC tents [default = %s]\n", fTents? "yes": "no" );
Abc_Print( -2, "\t-p : toggle printing switching activity [default = %s]\n", fSwitch? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");
return 1;