Skip to content

Commit

Permalink
Clang-tidy
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Figueroa <santiago.figueroa.manrique@alliander.com>
  • Loading branch information
figueroa1395 committed Jul 15, 2024
1 parent 3acb0bb commit ad7b082
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ inline void calculate_source_result(IdxRange const& sources, Idx bus_number, YBu
return dot(y_ref, u_ref);
});
ComplexTensor<sym> const y_ref_t = std::accumulate(y_ref_acc.begin(), y_ref_acc.end(), ComplexTensor<sym>{});
ComplexTensor<sym> z_ref_t = inv_y<sym>(y_ref_t); // s_E = 15E, m_Z = 6E truncation errors.
ComplexTensor<sym> const z_ref_t = inv_y<sym>(y_ref_t); // s_E = 15E, m_Z = 6E truncation errors.
ComplexValue<sym> const i_ref_t = std::accumulate(i_ref_acc.begin(), i_ref_acc.end(), ComplexValue<sym>{});
for (size_t i = 0; i < sources.size(); ++i) {
Idx const source = sources_acc[i];
Expand Down

0 comments on commit ad7b082

Please sign in to comment.