Skip to content

Commit

Permalink
- remove unnecessary line of code
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@15873 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Apr 22, 2013
1 parent 7173e4f commit 75b813b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Compiler/BackEnd/BackendDAETransform.mo
Expand Up @@ -1267,7 +1267,7 @@ algorithm
(outI,outStack,outComps):=
matchcontinue (eqns,mt,a2,number,lowlink,stackflag,i,v,istack,icomps)
local
Integer i1,lv,lw,minv,w,nw,nv,lowlinkv;
Integer i1,lv,lw,minv,w,nw,nv;
list<Integer> stack,ws;
list<list<Integer>> comps_1,comps_2,comps;

Expand All @@ -1294,8 +1294,7 @@ algorithm
nv = lowlink[v];
(nw < nv) = true;
true = stackflag[w];
lowlinkv = lowlink[v];
minv = intMin(nw, lowlinkv);
minv = intMin(nw, nv);
_ = arrayUpdate(lowlink,v,minv);
(i1,stack,comps) = iterateReachableNodes(ws, mt, a2, number, lowlink, stackflag, i, v, istack, icomps);
then
Expand Down

0 comments on commit 75b813b

Please sign in to comment.