Skip to content

Commit

Permalink
- Use new implementation of Tarjan's algorithm for uncertainties
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@25642 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
lochel committed Apr 20, 2015
1 parent 599c412 commit 0e17b8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/BackEnd/Uncertainties.mo
Expand Up @@ -1089,7 +1089,7 @@ compsOut:=matchcontinue(m,mt,ass1,ass2)
then {{1}};
case(_,_,_,_)
equation
failure(_=Sorting.TarjanOld(mt,ass2));
failure(_=Sorting.TarjanTransposed(mt,ass2));

print("TarjanAlgorithm failed\n");
Error.clearMessages();
Expand All @@ -1099,7 +1099,7 @@ compsOut:=matchcontinue(m,mt,ass1,ass2)
comps;
case(_,_,_,_)
equation
comps=Sorting.TarjanOld(mt,ass2);
comps=Sorting.TarjanTransposed(mt,ass2);
then
comps;
end matchcontinue;
Expand Down

0 comments on commit 0e17b8f

Please sign in to comment.