Skip to content
Snippets Groups Projects
Verified Commit c7b4ea40 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

:bug: Steady state computation: fix crash if bytecode (without block) does not find a solution

ys was uninitialized and it would crash further down in the function.
parent d6ea315a
No related branches found
No related tags found
No related merge requests found
...@@ -395,6 +395,7 @@ elseif options.bytecode ...@@ -395,6 +395,7 @@ elseif options.bytecode
end end
catch ME catch ME
disp(ME.message); disp(ME.message);
ys = ys_init;
check = 1; check = 1;
end end
elseif options.block elseif options.block
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment