Skip to content

Commit

Permalink
Only dump info for casual set if DT is activated
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaeuber authored and OpenModelica-Hudson committed Mar 22, 2016
1 parent c3889ed commit b98debe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/BackEnd/BackendDump.mo
Expand Up @@ -3359,7 +3359,7 @@ algorithm
if intGt(teqsys,0) then
dumpCompTorn(tornTpl,"strict");
end if;
if intGt(teqsys2,0) then
if intGt(teqsys2,0) and not stringEqual(Config.dynamicTearing(),"false") then
dumpCompTorn(tornTpl2,"casual");
end if;
end dumpCompShort;
Expand Down

0 comments on commit b98debe

Please sign in to comment.