Skip to content

Commit

Permalink
Per #932, need to write MCTS HSS_EC value to temp file during the boo…
Browse files Browse the repository at this point in the history
…tstrapping process.
  • Loading branch information
JohnHalleyGotway committed Jun 11, 2021
1 parent 740504b commit ec3b0d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions met/src/libcode/vx_statistics/compute_ci.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3917,8 +3917,8 @@ void write_ctsinfo(ofstream &tmp_out, const CTSInfo &c) {
void write_mctsinfo(ofstream &tmp_out, const MCTSInfo &c) {
char line[max_line_len];

snprintf(line, max_line_len, "%f %f %f %f",
c.acc.v, c.hk.v, c.hss.v, c.ger.v);
snprintf(line, max_line_len, "%f %f %f %f %f",
c.acc.v, c.hk.v, c.hss.v, c.hss_ec.v, c.ger.v);

tmp_out << line << "\n";

Expand Down

0 comments on commit ec3b0d4

Please sign in to comment.