diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-10 12:35:27 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-10 12:35:27 -0700 |
commit | 33695bed11237e8b2e04e75daa0659070d5605a6 (patch) | |
tree | 4b8052282ac3adccc70824798a733ea8f38c6565 /src/misc/util | |
parent | 4c62b0028816cda59edf796577056d6d27e1be8d (diff) | |
download | abc-33695bed11237e8b2e04e75daa0659070d5605a6.tar.gz abc-33695bed11237e8b2e04e75daa0659070d5605a6.tar.bz2 abc-33695bed11237e8b2e04e75daa0659070d5605a6.zip |
Improvements to the canonical form computation.
Diffstat (limited to 'src/misc/util')
-rw-r--r-- | src/misc/util/utilTruth.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/misc/util/utilTruth.h b/src/misc/util/utilTruth.h index 5561a2c6..7010bf2d 100644 --- a/src/misc/util/utilTruth.h +++ b/src/misc/util/utilTruth.h @@ -1200,6 +1200,7 @@ static inline void Abc_TtImplementNpnConfig( word * pTruth, int nVars, char * pC for ( i = 0; i < nVars; i++ ) if ( (uCanonPhase >> i) & 1 ) Abc_TtFlip( pTruth, nWords, i ); + if ( pCanonPerm ) for ( i = 0; i < nVars; i++ ) { for ( k = i; k < nVars; k++ ) |