Commit 51af1a19 authored by lukashov's avatar lukashov

Now BLER goes to 10^(-2) in case of abstraction and 10^-3 in regular mode.

parent 2b415868
......@@ -4313,16 +4313,31 @@ n(tikz_fname,"w");
} else if (test_perf !=0 ){
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) || (rx_type==rx_standard)) {
if (((double)errs[0][0]/(round_trials[0]))<1e-2 && ((double)errs[1][0]/(round_trials[0]))<1e-2)
break;
if (abstx == 1) {
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-2)
break;
}
}
else{
if (((double)errs[0][0]/(round_trials[0]))<1e-2)
break;
else {
if ((rx_type==rx_IC_dual_stream) || (rx_type==rx_standard)) {
if (((double)errs[0][0]/(round_trials[0]))<1e-3 && ((double)errs[1][0]/(round_trials[0]))<1e-3)
break;
}
else{
if (((double)errs[0][0]/(round_trials[0]))<1e-3)
break;
}
}
if (n_frames==1)
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