Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #119 from OpenOCL/develop
Browse files Browse the repository at this point in the history
ocl stage fh dae input, ocl matrix warnings
  • Loading branch information
jkoendev committed Jun 6, 2019
2 parents b002811 + 51e1eb4 commit bca237e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Core/OclStage.m
Expand Up @@ -60,7 +60,7 @@
r = p.parse(varargin{:});

varsfhInput = r.vars;
% % daefhInput = r.dae;
daefhInput = r.dae;
pathcostsfhInput = r.pathcosts;
pointcostsfhInput = r.pointcosts;
pointconstraintsfhInput = r.pointconstraints;
Expand Down
2 changes: 1 addition & 1 deletion Core/Variables/OclMatrix.m
Expand Up @@ -16,7 +16,7 @@
self.msize = size;
end
function [N,M,K] = size(self)
s = self.msize();
s = self.msize;
if nargout>1
N = s(1);
M = s(2);
Expand Down

0 comments on commit bca237e

Please sign in to comment.