Skip to content

Commit 56c3741

Browse files
committed
Updates submodule with bug fixes
1 parent cca93e0 commit 56c3741

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cpp/rat.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,8 +1221,8 @@ ProblemDefinition problemDefinitionFromStruct0T(const RAT::struct0_T problem)
12211221
problem_def.domainRatios = pyArrayFromRatArray1d<coder::array<real_T, 2U>>(problem.domainRatios);
12221222
problem_def.numberOfDomainContrasts = problem.numberOfDomainContrasts;
12231223
problem_def.domainContrastLayers = pyList1DFromRatCellWrap2D<coder::array<RAT::cell_wrap_4, 2U>>(problem.domainContrastLayers);
1224-
problem_def.fitParams = pyArrayFromRatArray1d<coder::array<real_T, 1U>>(problem.fitParams, false);
1225-
problem_def.otherParams = pyArrayFromRatArray1d<coder::array<real_T, 1U>>(problem.otherParams, false);
1224+
problem_def.fitParams = pyArrayFromRatArray1d<coder::array<real_T, 2U>>(problem.fitParams);
1225+
problem_def.otherParams = pyArrayFromRatArray1d<coder::array<real_T, 2U>>(problem.otherParams);
12261226
problem_def.fitLimits = pyArrayFromRatArray2d(problem.fitLimits);
12271227
problem_def.otherLimits = pyArrayFromRatArray2d(problem.otherLimits);
12281228

0 commit comments

Comments
 (0)