Skip to content

Commit

Permalink
- upper and lower case
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@17164 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
lochel committed Sep 10, 2013
1 parent afa6677 commit 036e81f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -8212,23 +8212,23 @@ algorithm
BackendDAE.Shared shared;

case (_, {}, _, _) equation
Debug.fcall(Flags.OPT_DAE_DUMP, print, "Post-optimization done.\n");
Debug.fcall(Flags.OPT_DAE_DUMP, print, "post-optimization done.\n");
then (inDAE,Util.SUCCESS());

case (_, (optModule, moduleStr, _)::rest, _, _) equation
BackendDAE.DAE(systs, shared) = optModule(inDAE);
systs = filterEmptySystems(systs);
dae = BackendDAE.DAE(systs, shared);
Debug.execStat("postOpt " +& moduleStr,GlobalScript.RT_CLOCK_EXECSTAT_BACKEND_MODULES);
Debug.fcall(Flags.OPT_DAE_DUMP, print, stringAppendList({"\nPost-optimization module ", moduleStr, ":\n\n"}));
Debug.fcall(Flags.OPT_DAE_DUMP, print, stringAppendList({"\npost-optimization module ", moduleStr, ":\n\n"}));
Debug.fcall(Flags.OPT_DAE_DUMP, BackendDump.printBackendDAE, dae);
dae1 = causalizeDAE(dae, NONE(), matchingAlgorithm, daeHandler, false);
(dae2, status) = postOptimizeDAE(dae1, rest, matchingAlgorithm, daeHandler);
then (dae2, status);

case (_, (optModule, moduleStr, b)::rest, _, _) equation
Debug.execStat("postOpt <failed> " +& moduleStr, GlobalScript.RT_CLOCK_EXECSTAT_BACKEND_MODULES);
str = stringAppendList({"Post-optimization module ", moduleStr, " failed."});
str = stringAppendList({"post-optimization module ", moduleStr, " failed."});
Debug.bcall2(not b,Error.addMessage, Error.INTERNAL_ERROR, {str});
(dae,status) = postOptimizeDAE(inDAE,rest,matchingAlgorithm,daeHandler);
then (dae, Util.if_(b, Util.FAILURE(), status));
Expand Down

0 comments on commit 036e81f

Please sign in to comment.