Skip to content

Commit

Permalink
runtimeCPP: save every time-varying variable in csv file. Needed for …
Browse files Browse the repository at this point in the history
…result comparison.

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@17229 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Christian SChubert committed Sep 13, 2013
1 parent a3c9c53 commit f1ee883
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion Compiler/Template/CodegenCpp.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -3425,7 +3425,23 @@ case MODELINFO(vars=SIMVARS(__)) then
;separator=","),
(vars.derivativeVars |> SIMVAR(__) =>
' "<%crefStr(name)%>" '
;separator=",")}
;separator=","),
(vars.inputVars |> SIMVAR(__) =>
' "<%crefStr(name)%>" '
;separator=","),
(vars.outputVars |> SIMVAR(__) =>
' "<%crefStr(name)%>" '
;separator=","),
(vars.aliasVars |> SIMVAR(__) =>
' "<%crefStr(name)%>" '
;separator=","),
(vars.intAliasVars |> SIMVAR(__) =>
' "<%crefStr(name)%>" '
;separator=","),
(vars.boolAliasVars |> SIMVAR(__) =>
' "<%crefStr(name)%>" '
;separator=",")
}
;separator=","%>;
>>
end writeoutput1;
Expand Down

0 comments on commit f1ee883

Please sign in to comment.