Skip to content

Commit

Permalink
[NF] Disable checks for actualStream/inStream.
Browse files Browse the repository at this point in the history
- Temporarily disable special handling of actualStream/inStream
  operators until they can be fixed properly.

Belonging to [master]:
  - #149
  - OpenModelica/OMCompiler#3058
  • Loading branch information
perost authored and OpenModelica-Hudson committed Apr 19, 2019
1 parent 8e0f7c5 commit 22a570f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/NFFrontEnd/NFFunction.mo
Expand Up @@ -1380,7 +1380,7 @@ uniontype Function
special := match Absyn.pathFirstIdent(path)
// Can have variable number of arguments.
case "array" then true;
case "actualStream" then true;
//case "actualStream" then true;
case "branch" then true;
case "cardinality" then true;
case "cat" then true;
Expand All @@ -1396,7 +1396,7 @@ uniontype Function
case "getInstanceName" then true;
// Always discrete.
case "initial" then true;
case "inStream" then true;
//case "inStream" then true;
case "isRoot" then true;
// Arguments can be scalar, vector, matrix, 3d array .... basically anything
// We need to make sure size(Arg,i) = 1 for 2 < i <= ndims(Arg).
Expand Down

0 comments on commit 22a570f

Please sign in to comment.