Skip to content

Commit

Permalink
Per #2339, fix parsing of SEEPS_MPR line type.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Nov 12, 2022
1 parent b90e0c7 commit ca9537a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/libcode/vx_statistics/compute_stats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,6 @@ double *compute_seeps_density_vector(const PairDataPoint *pd, SeepsAggScore *see
vector<vector<double>> clat_slon(seeps_cnt, vector<double> (seeps_cnt));
vector<vector<double>> clon_slat(seeps_cnt, vector<double> (seeps_cnt));
vector<vector<double>> density_m(seeps_cnt, vector<double> (seeps_cnt));

static const char *method_name = "compute_seeps_density_vector() -> ";

if (seeps_cnt == 0) {
Expand Down
1 change: 1 addition & 0 deletions src/tools/core/stat_analysis/parse_stat_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,7 @@ void parse_seeps_mpr_line(STATLine &l, SEEPSMPRData &s_data) {
s_data.seeps_mpr.p2 = atof(l.get_item("P2"));
s_data.seeps_mpr.t1 = atof(l.get_item("T1"));
s_data.seeps_mpr.t2 = atof(l.get_item("T2"));
s_data.seeps_mpr.score = atof(l.get_item("SEEPS"));

return;
}
Expand Down

0 comments on commit ca9537a

Please sign in to comment.