summaryrefslogtreecommitdiffstats
path: root/src/map/mio/mioUtils.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-10-01 11:44:14 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-10-01 11:44:14 -0700
commit73ab6aac1fad7cf7a4f15bccafff1eabebf8cce6 (patch)
tree9f68741dad9c785a0c2ea2336c7358e87ded5d77 /src/map/mio/mioUtils.c
parenta595fa85ef1d324448e171651881b0b896c69098 (diff)
downloadabc-73ab6aac1fad7cf7a4f15bccafff1eabebf8cce6.tar.gz
abc-73ab6aac1fad7cf7a4f15bccafff1eabebf8cce6.tar.bz2
abc-73ab6aac1fad7cf7a4f15bccafff1eabebf8cce6.zip
Changes several defaults of 'super' to be infinite.
Diffstat (limited to 'src/map/mio/mioUtils.c')
-rw-r--r--src/map/mio/mioUtils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mio/mioUtils.c b/src/map/mio/mioUtils.c
index d481bf81..a67153a5 100644
--- a/src/map/mio/mioUtils.c
+++ b/src/map/mio/mioUtils.c
@@ -311,7 +311,7 @@ Mio_Gate_t ** Mio_CollectRoots( Mio_Library_t * pLib, int nInputs, float tDelay,
{
if ( pGate->nInputs > nInputs )
continue;
- if ( pGate->dDelayMax > (double)tDelay )
+ if ( tDelay > 0.0 && pGate->dDelayMax > (double)tDelay )
continue;
if ( pGate->uTruth == 0 || pGate->uTruth == ~0 )
continue;