Update cscal.c

This commit is contained in:
Martin Kroeker 2024-07-30 15:40:27 +02:00 committed by GitHub
parent 2c36a48130
commit e6a6296d13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ int CNAME(BLASLONG n, BLASLONG dummy0, BLASLONG dummy1, FLOAT da_r, FLOAT da_i,
x[i + 1] = da_i * x[i]; x[i + 1] = da_i * x[i];
else else
x[i + 1] = NAN; x[i + 1] = NAN;
if (!isnan(x[i])) if (x[i] == x[i])
x[i] = temp0; x[i] = temp0;
i += 2; i += 2;
j++; j++;