Skip to content

Commit

Permalink
fix: include r1_max in MTSatModel instance creation
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 720cf04 commit 9279ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MT/qi_mtsat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ int mtsat_main(args::Subparser &parser) {
json input = json_file ? QI::ReadJSON(json_file.Get()) : QI::ReadJSON(std::cin);
QI::MTSatSequence seq(input["MTSat"]);

MTSatModel model{{}, seq, C.Get(), smallangle, delta_max.Get()};
MTSatModel model{{}, seq, C.Get(), smallangle, delta_max.Get(), r1_max.Get()};
if (simulate) {
QI::SimulateModel<MTSatModel, true>(
input,
Expand Down

0 comments on commit 9279ed4

Please sign in to comment.