Skip to content

Commit

Permalink
style: add spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremie-fouquet authored and spinicist committed May 24, 2024
1 parent 6d36a11 commit 720cf04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MT/MTSatModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ auto MTSatModel::fit(QI_ARRAYN(DataType, NI) const & in,
(S_t1 * s.TR_pd * al_t1_b1corr - S_pd * s.TR_t1 * al_pd_b1corr),
0.);
auto const d = (A * s.al_mt / S_mt - 1.0) * R1 * s.TR_mt - s.al_mt * s.al_mt / 2;
auto const d_corrected = std::clamp(d * (1.0 - C) / (1.0 - C * B1), 0., delta_max/100.);
auto const d_corrected = std::clamp(d * (1.0 - C) / (1.0 - C * B1), 0., delta_max / 100.);
return {A, R1, d_corrected * 100};
}

0 comments on commit 720cf04

Please sign in to comment.