diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-03-10 15:48:46 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-03-10 15:48:46 -0700 |
commit | 716b8cc6b8079dba1638380f161b2ab03af7d401 (patch) | |
tree | 202355d3f45996cfabd8fe56a62d7c1e9bfc5cbb /src/opt/dau/dauNonDsd.c | |
parent | 397a8c478f0bbba1c61208e93455e624700cf33a (diff) | |
download | abc-716b8cc6b8079dba1638380f161b2ab03af7d401.tar.gz abc-716b8cc6b8079dba1638380f161b2ab03af7d401.tar.bz2 abc-716b8cc6b8079dba1638380f161b2ab03af7d401.zip |
Improvements to print-outs.
Diffstat (limited to 'src/opt/dau/dauNonDsd.c')
-rw-r--r-- | src/opt/dau/dauNonDsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opt/dau/dauNonDsd.c b/src/opt/dau/dauNonDsd.c index ec16c9ab..f34f1809 100644 --- a/src/opt/dau/dauNonDsd.c +++ b/src/opt/dau/dauNonDsd.c @@ -434,7 +434,7 @@ unsigned Dau_DecReadSet( char * pStr ) void Dau_DecPrintSets( Vec_Int_t * vSets, int nVars ) { int i, Entry; - printf( "The set contains %d entries:\n", Vec_IntSize(vSets) ); + printf( "The %d-variable set family contains %d sets:\n", nVars, Vec_IntSize(vSets) ); Vec_IntForEachEntry( vSets, Entry, i ) Dau_DecPrintSet( (unsigned)Entry, nVars, 1 ); printf( "\n" ); |