fixed 0^th iter log print

This commit is contained in:
Krishna Vedala 2020-04-09 00:22:13 -04:00
parent da073120d0
commit 8e2ad2e1ef
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ int main(int argc, char **argv)
#if defined(DEBUG) || !defined(NDEBUG)
fprintf(log_file, "avg. correction");
fprintf(log_file, "0,");
fprintf(log_file, "\n0,");
for (n = 0; n < degree - 1; n++)
fprintf(log_file, "%s,", complex_str(s0[n]));
#endif