diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-09 22:57:03 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-09 22:57:03 -0700 |
commit | 908d5e696c7e73f80abcef85ec796511f3bffb0f (patch) | |
tree | 6fb41dd27d8ae48d93f71cda4ed56526092c5302 /src/map/super | |
parent | d46c49088d7b9f1725d4d8624717f7209022c632 (diff) | |
download | abc-908d5e696c7e73f80abcef85ec796511f3bffb0f.tar.gz abc-908d5e696c7e73f80abcef85ec796511f3bffb0f.tar.bz2 abc-908d5e696c7e73f80abcef85ec796511f3bffb0f.zip |
Replacing Mb/Gb to be MB/GB.
Diffstat (limited to 'src/map/super')
-rw-r--r-- | src/map/super/superAnd.c | 2 | ||||
-rw-r--r-- | src/map/super/superGate.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/map/super/superAnd.c b/src/map/super/superAnd.c index b6a30025..9f3996b9 100644 --- a/src/map/super/superAnd.c +++ b/src/map/super/superAnd.c @@ -499,7 +499,7 @@ ABC_PRT( "Sorting", clock() - clk ); fclose( pFile ); printf( "The supergates are written into file \"%s\" ", FileName ); - printf( "(%0.2f Mb).\n", ((double)Extra_FileSize(FileName))/(1<<20) ); + printf( "(%0.2f MB).\n", ((double)Extra_FileSize(FileName))/(1<<20) ); } /**Function************************************************************* diff --git a/src/map/super/superGate.c b/src/map/super/superGate.c index 380065d3..53f3da35 100644 --- a/src/map/super/superGate.c +++ b/src/map/super/superGate.c @@ -1186,7 +1186,7 @@ void Super_WriteLibrary( Super_Man_t * pMan ) if ( pMan->fVerbose ) { printf( "The supergates are written using old format \"%s\" ", FileName ); - printf( "(%0.3f Mb).\n", ((double)Extra_FileSize(FileName))/(1<<20) ); + printf( "(%0.3f MB).\n", ((double)Extra_FileSize(FileName))/(1<<20) ); } ABC_FREE( FileName ); @@ -1324,7 +1324,7 @@ void Super_WriteLibraryTree( Super_Man_t * pMan ) if ( pMan->fVerbose ) { printf( "The supergates are written using new format \"%s\" ", FileName ); - printf( "(%0.3f Mb).\n", ((double)Extra_FileSize(FileName))/(1<<20) ); + printf( "(%0.3f MB).\n", ((double)Extra_FileSize(FileName))/(1<<20) ); } ABC_FREE( FileName ); |