Skip to content

Commit

Permalink
RML compilation
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@18946 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Feb 2, 2014
1 parent 7babbaf commit 8804e1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Compiler/Util/List.mo
Expand Up @@ -7135,9 +7135,11 @@ public function getMemberOnTrue
protected
ElementType e;
list<ElementType> rest;
Boolean b;
algorithm
e :: rest := inList;
outElement := Debug.bcallret3(not inCompFunc(inValue, e), getMemberOnTrue, inValue, rest, inCompFunc, e);
b := inCompFunc(inValue, e);
outElement := Debug.bcallret3(boolNot(b), getMemberOnTrue, inValue, rest, inCompFunc, e);
end getMemberOnTrue;

public function notMember
Expand Down

0 comments on commit 8804e1e

Please sign in to comment.