Skip to content

Commit

Permalink
try fixing new subtimestep aggregator for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
tyneises committed Jan 13, 2025
1 parent ffc7c9e commit 4d45a29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tcs/csp_solver_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ void C_csp_reported_outputs::C_output::send_to_reporting_ts_array(double report_
// *************************************************************
double sum_val = 0;
for (size_t i = 0; i < n_report; i++) {
sum_val += (float)mv_temp_outputs[i];
sum_val += mv_temp_outputs[i];
}
mp_reporting_ts_array[m_counter_reporting_ts_array] = sum_val;
mp_reporting_ts_array[m_counter_reporting_ts_array] = (float)sum_val;
}
else
{
Expand Down

0 comments on commit 4d45a29

Please sign in to comment.