Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Ivanov committed Aug 16, 2024
1 parent 867f6cd commit 437fe09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1625,7 +1625,7 @@ private EventGraph computeTransitiveClosure(EventGraph oldOuter, EventGraph inne
EventGraph next;
EventGraph outer = new EventGraph(oldOuter);
outer.addAll(inner);
for (EventGraph current = EventGraph.difference(inner, outer); !current.isEmpty(); current = next) {
for (EventGraph current = EventGraph.difference(inner, oldOuter); !current.isEmpty(); current = next) {
next = new EventGraph();
computeComposition(next, current, outer, isMay);
computeComposition(next, outer, current, isMay);
Expand Down

0 comments on commit 437fe09

Please sign in to comment.