Mentions légales du service

Skip to content
Snippets Groups Projects

Fix for the TPMQRT routine

Merged Dalal Sukkari requested to merge sukkarde into master
All threads resolved!
Files
3
+ 1
2
@@ -58,8 +58,7 @@ void morse_pztpgqrt( int L,
@@ -58,8 +58,7 @@ void morse_pztpgqrt( int L,
int ib, minMT;
int ib, minMT;
/* Dimension of the first column */
/* Dimension of the first column */
int maxm = Q2->m - L;
int maxmt = (L == Q2->m) ? 1 : ((Q2->m % Q2->mb == 0) ? (Q2->m / Q2->mb) : (Q2->m / Q2->mb + 1));
int maxmt = (maxm % Q2->mb == 0) ? (maxm / Q2->mb) : (maxm / Q2->mb + 1);
int maxmtk;
int maxmtk;
morse = morse_context_self();
morse = morse_context_self();
Loading