Skip to content

Commit

Permalink
Per issue #1761: modified the check on the perc_thresh_freq_bias, jus…
Browse files Browse the repository at this point in the history
…t has to be > 0 now. SL
  • Loading branch information
Seth Linden committed Oct 21, 2021
1 parent 5ebe49a commit d3885c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion met/src/basic/vx_config/config.tab.yy
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,7 @@ if ( s->PT < 0 || s->PT > 100 ) {

}

if ( s->Ptype == perc_thresh_freq_bias && !is_eq(s->PT, 1.0) ) {
if ( s->Ptype == perc_thresh_freq_bias && s->PT <= 0 ) {

mlog << Error << "\ndo_simple_perc_thresh() -> "
<< "unsupported frequency bias percentile threshold!\n\n";
Expand Down

0 comments on commit d3885c7

Please sign in to comment.