Skip to content

Commit

Permalink
- Flat Modelica now uses "and, or, not" instead of "AND, OR, NOT"
Browse files Browse the repository at this point in the history
  - This is to match actual Modelica syntax


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8496 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Apr 5, 2011
1 parent 621ea26 commit f3cff4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/FrontEnd/ExpressionDump.mo
Expand Up @@ -316,8 +316,8 @@ public function lbinopSymbol
algorithm
outString:=
match (inOperator)
case (DAE.AND()) then " AND ";
case (DAE.OR()) then " OR ";
case (DAE.AND()) then " and ";
case (DAE.OR()) then " or ";
end match;
end lbinopSymbol;

Expand All @@ -328,7 +328,7 @@ public function lunaryopSymbol
output String outString;
algorithm
outString := match (inOperator)
case (DAE.NOT()) then " NOT ";
case (DAE.NOT()) then " not ";
end match;
end lunaryopSymbol;

Expand Down

0 comments on commit f3cff4e

Please sign in to comment.