From ea13085fe34bed2e827fe8ec6fb7e24c6e1a5d8f Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 19 Feb 2012 13:33:21 -0800 Subject: Added printout of BMC tents in &ps. --- src/base/abci/abc.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/base/abci/abc.c') 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; -- cgit v1.2.3