Skip to content

Commit

Permalink
FIX: ap deref reentrant notification
Browse files Browse the repository at this point in the history
- closes leonoel#108
  • Loading branch information
lotuc committed Aug 26, 2024
1 parent d9532f3 commit 25ab8f2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions java/missionary/impl/Ambiguous.java
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,8 @@ else if (curr instanceof Processor) {
}
break;
} else if (Numbers.isPos(par)) {
c.busy = false;
cb = branch(c);
break;
if (c.busy = !c.busy) {} else break;
} else if (Numbers.isNeg(par)) if (c == b.choice) if (curr == null) {
c.busy = false;
cb = choose(c);
Expand Down

1 comment on commit 25ab8f2

@lotuc
Copy link
Owner Author

@lotuc lotuc commented on 25ab8f2 Aug 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not a valid fix; I should dig more into the implementation.

Please sign in to comment.