Skip to content

Commit

Permalink
Per #1749, pass hss_ec_value from the config file into the computatio…
Browse files Browse the repository at this point in the history
…n of the MCTS statistics.
  • Loading branch information
JohnHalleyGotway committed May 28, 2021
1 parent 2b63bcb commit b2d7f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions met/src/tools/core/grid_stat/grid_stat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1899,6 +1899,7 @@ void do_mcts(MCTSInfo &mcts_info, int i_vx,
mcts_info.cts.set_size(conf_info.vx_opt[i_vx].fcat_ta.n() + 1);
mcts_info.set_fthresh(conf_info.vx_opt[i_vx].fcat_ta);
mcts_info.set_othresh(conf_info.vx_opt[i_vx].ocat_ta);
mcts_info.set_ec_value(conf_info.vx_opt[i_vx].hss_ec_value);
mcts_info.allocate_n_alpha(conf_info.vx_opt[i_vx].get_n_ci_alpha());

for(i=0; i<conf_info.vx_opt[i_vx].get_n_ci_alpha(); i++) {
Expand Down
1 change: 1 addition & 0 deletions met/src/tools/core/point_stat/point_stat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1354,6 +1354,7 @@ void do_mcts(MCTSInfo &mcts_info, int i_vx, const PairDataPoint *pd_ptr) {
mcts_info.cts.set_size(conf_info.vx_opt[i_vx].fcat_ta.n() + 1);
mcts_info.set_fthresh(conf_info.vx_opt[i_vx].fcat_ta);
mcts_info.set_othresh(conf_info.vx_opt[i_vx].ocat_ta);
mcts_info.set_ec_value(conf_info.vx_opt[i_vx].hss_ec_value);
mcts_info.allocate_n_alpha(conf_info.vx_opt[i_vx].get_n_ci_alpha());

for(i=0; i<conf_info.vx_opt[i_vx].get_n_ci_alpha(); i++) {
Expand Down

0 comments on commit b2d7f2d

Please sign in to comment.