Skip to content

Commit

Permalink
fix in computationalGraphTool
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierr committed Jul 17, 2024
1 parent 1a830a6 commit 6bae49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/ComputationalGraph/ComputationalGraphTool.m
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function printPropFunctionCallList(cgt, propfunc, varargin)
[staticinds, staticpropinds] = cgt.findStaticVarNameInds(staticinds);

if ~isempty(staticinds)
propfuncinds = [staticpropinds, propfuncinds];
propfuncinds = [staticpropinds; propfuncinds];
end

propfuncinds = unique(propfuncinds);
Expand Down

0 comments on commit 6bae49c

Please sign in to comment.