Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Fix output causality.

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@25001 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adeas31 committed Mar 9, 2015
1 parent 96fb6d9 commit 08e1c29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/SimCode/SimCodeUtil.mo
Expand Up @@ -9056,7 +9056,7 @@ algorithm
local
DAE.ComponentRef cr;
BackendDAE.Variables knvars;
case (BackendDAE.VAR(varName = DAE.CREF_IDENT(), varDirection = DAE.OUTPUT()), _) then SimCodeVar.OUTPUT();
case (BackendDAE.VAR(varName = cr, varDirection = DAE.OUTPUT()), _) then SimCodeVar.OUTPUT();
case (BackendDAE.VAR(varName = cr, varDirection = DAE.INPUT()), knvars)
equation
(_, _) = BackendVariable.getVar(cr, knvars);
Expand Down

0 comments on commit 08e1c29

Please sign in to comment.