Skip to content

Commit

Permalink
don't write test file
Browse files Browse the repository at this point in the history
  • Loading branch information
oguyon committed Feb 18, 2024
1 parent 544f772 commit ad4c9e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugins/milk-extra-src/linalgebra/basis_rotate_match.c
Original file line number Diff line number Diff line change
Expand Up @@ -536,16 +536,17 @@ errno_t compute_basis_rotate_match(
// sort by effective index
quick_sort2l(AmodeBeff, iarray, Adim);

/*
{
char fname[STRINGMAXLEN_FILENAME];
WRITE_FILENAME(fname, "Beff.%04d.dat", loopiter);
WRITE_FILENAME(fname, "./compfCM/Beff.%04d.dat", loopiter);
FILE * fpBeff = fopen(fname, "w");
for( int iia = 0; iia < Adim; iia++ )
{
fprintf(fpBeff, "%4d %16f %4ld\n", iia, AmodeBeff[iia], iarray[iia]);
}
fclose(fpBeff);
}
}*/


if ( loopiter == loopiterMax-1 )
Expand Down

0 comments on commit ad4c9e1

Please sign in to comment.