diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-10-07 17:48:07 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-10-07 17:48:07 -0700 |
commit | 46223f903b69349135ccb1345720f2b4d6530a71 (patch) | |
tree | 4f470d445a78aa4dfb8cadfa442c95d611d0e8be /src/map/if | |
parent | a2692b70fb1d05029486f784bf364cea83cb6b47 (diff) | |
download | abc-46223f903b69349135ccb1345720f2b4d6530a71.tar.gz abc-46223f903b69349135ccb1345720f2b4d6530a71.tar.bz2 abc-46223f903b69349135ccb1345720f2b4d6530a71.zip |
Two fixes in 'dsd_filter'.
Diffstat (limited to 'src/map/if')
-rw-r--r-- | src/map/if/ifDsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/if/ifDsd.c b/src/map/if/ifDsd.c index e05e9a6f..5d9077c3 100644 --- a/src/map/if/ifDsd.c +++ b/src/map/if/ifDsd.c @@ -2772,7 +2772,7 @@ void Id_DsdManTuneThresh( If_DsdMan_t * p, int fUnate, int fThresh, int fThreshH word * pTruth, Perm; int i, nVars, Value; abctime clk = Abc_Clock(); - assert( fUnate != fThresh || fUnate != fThreshHeuristic ); + assert( fUnate + fThresh + fThreshHeuristic <= 1 ); if ( p->nObjsPrev > 0 ) printf( "Starting the tuning process from object %d (out of %d).\n", p->nObjsPrev, Vec_PtrSize(&p->vObjs) ); // clean the attributes |