summaryrefslogtreecommitdiff
path: root/fourier.c
diff options
context:
space:
mode:
Diffstat (limited to 'fourier.c')
-rw-r--r--fourier.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fourier.c b/fourier.c
index 7350cab..00b0ad0 100644
--- a/fourier.c
+++ b/fourier.c
@@ -71,7 +71,7 @@ DoFourier(void)
** larger arrays and try again.
*/
- if (DoFPUTransIteration(abase,bbase, locfourierstruct->arraysize) > global_min_ticks) {
+ if (DoFPUTransIteration(abase,bbase, locfourierstruct->arraysize) > MINIMUM_TICKS) {
break;
}
@@ -102,7 +102,7 @@ DoFourier(void)
do {
total_time += DoFPUTransIteration(abase,bbase,locfourierstruct->arraysize);
iterations += locfourierstruct->arraysize * 2 - 1;
- } while (total_time < locfourierstruct->request_secs * CLOCKS_PER_SEC);
+ } while (total_time < MINIMUM_SECONDS * CLOCKS_PER_SEC);
free(abase);
free(bbase);