Skip to content

Commit

Permalink
Make optdaedump printing the original system
Browse files Browse the repository at this point in the history
  • Loading branch information
lochel committed Jul 19, 2019
1 parent a6beda5 commit 00048f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OMCompiler/Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -7088,8 +7088,8 @@ algorithm
matchingAlgorithm := getMatchingAlgorithm(strmatchingAlgorithm);
daeHandler := getIndexReductionMethod(strdaeHandler);

if Flags.isSet(Flags.DUMP_DAE_LOW) then
BackendDump.dumpBackendDAE(inDAE, "dumpdaelow");
if Flags.isSet(Flags.DUMP_DAE_LOW) or Flags.isSet(Flags.OPT_DAE_DUMP) then
BackendDump.dumpBackendDAE(inDAE, "dumpdaelow (before pre-optimization)");
if Flags.isSet(Flags.ADDITIONAL_GRAPHVIZ_DUMP) then
BackendDump.graphvizIncidenceMatrix(inDAE, "dumpdaelow");
end if;
Expand Down

0 comments on commit 00048f4

Please sign in to comment.