Skip to content

Commit

Permalink
- Fixed problem making the bootstrap test fail
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@14206 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Leonardo Laguna committed Dec 3, 2012
1 parent 0c7dcef commit 2ba5241
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/BackEnd/Uncertainties.mo
Expand Up @@ -915,14 +915,14 @@ end matchcontinue;
end findReductionCantidates2;

protected function eliminateOutputVariables
input ExtIncidenceMatrix m;
input ExtIncidenceMatrix mIn;
input list<Integer> outputs;
output ExtIncidenceMatrix mOut;
algorithm
mOut:=matchcontinue(m,outputs)
mOut:=matchcontinue(mIn,outputs)
local Integer var; list<Integer> tail;
list<Integer> o;
ExtIncidenceMatrix newM;
ExtIncidenceMatrix newM,m;
case(m,{})
then m;
case(m,var::tail)
Expand Down

0 comments on commit 2ba5241

Please sign in to comment.