Commit 7ad4dcd3 authored by lukashov's avatar lukashov

Changing the level of target BLER on dlsim.c

parent 05fd0864
......@@ -4310,13 +4310,13 @@ n(tikz_fname,"w");
printf("[continue] effective rate : %f (%2.1f%%,%f)): increase snr \n",rate*effective_rate, 100*effective_rate, rate);
}
if (rx_type<rx_IC_dual_stream) {
if (((double)errs[0][0]/(round_trials[0]))<1e-3)
if ((rx_type==rx_IC_dual_stream) || (rx_type==rx_standard)) {
if (((double)errs[0][0]/(round_trials[0]))<1e-2 && ((double)errs[1][0]/(round_trials[0]))<1e-2)
break;
}
else{
if (((double)errs[0][0]/(round_trials[0]))<1e-3 && ((double)errs[1][0]/(round_trials[0]))<1e-3)
break;
if (((double)errs[0][0]/(round_trials[0]))<1e-2)
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment