allow up to a hundred iterations

This commit is contained in:
Ahmet Inan 2023-12-15 10:35:16 +01:00
commit c8f1096474

View file

@ -83,7 +83,7 @@ struct Encoder
}
void tone_reservation()
{
for (int n = 0; n < 10; ++n) {
for (int n = 0; n < 100; ++n) {
int peak = 0;
for (int i = 1; i < symbol_len; ++i)
if (norm(tdom[peak]) < norm(tdom[i]))