Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hhcheng13 committed Jul 5, 2022
2 parents eee8ab3 + 0b29d5f commit 592874e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Model/ModelOptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@
function bmo = ModelOptions(compute_dynamics, compute_hessian, compute_linear_model)
if (nargin >= 1)
bmo.isComputeDynamics = compute_dynamics;
elseif (nargin >= 2)
end
if (nargin >= 2)
bmo.isComputeHessian = compute_hessian;
elseif (nargin >= 3)
end
if (nargin >= 3)
bmo.isComputeLinearisation = compute_linear_model;
end
end
Expand Down

0 comments on commit 592874e

Please sign in to comment.