summaryrefslogtreecommitdiffstats
path: root/src/proof/int
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-07-25 20:42:55 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-07-25 20:42:55 -0700
commit950777ed50f9b59b51627da2af4efbb816bef562 (patch)
tree75f005c9faea86d5acc1c418806da8c32543f940 /src/proof/int
parentbb68d0b7f60c4dc6bf57b85d7c4e3c510df458cf (diff)
downloadabc-950777ed50f9b59b51627da2af4efbb816bef562.tar.gz
abc-950777ed50f9b59b51627da2af4efbb816bef562.tar.bz2
abc-950777ed50f9b59b51627da2af4efbb816bef562.zip
Fixing interpolation to run without resource limits by default.
Diffstat (limited to 'src/proof/int')
-rw-r--r--src/proof/int/intCore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/int/intCore.c b/src/proof/int/intCore.c
index c226c7e1..7891fa69 100644
--- a/src/proof/int/intCore.c
+++ b/src/proof/int/intCore.c
@@ -194,7 +194,7 @@ p->timeEqu += clock() - clk;
// iterate the interpolation procedure
for ( i = 0; ; i++ )
{
- if ( p->nFrames + i >= pPars->nFramesMax )
+ if ( pPars->nFramesMax && p->nFrames + i >= pPars->nFramesMax )
{
if ( pPars->fVerbose )
printf( "Reached limit (%d) on the number of timeframes.\n", pPars->nFramesMax );