You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The foldMap is stack safe test found in Arrow's Free is not present in Bow. Furthermore, the test fails if added.
I believe this is caused because the new Free implementation lacks the special flatMap case found in the old one.
A possible solution is to try to generalize the trampoline implementation of #636 as shown in the paper linked below. Then we can make Trampoline<A> = Free<ForFunction0, A> like in Arrow.
Description
The foldMap is stack safe test found in Arrow's Free is not present in Bow. Furthermore, the test fails if added.
I believe this is caused because the new Free implementation lacks the special flatMap case found in the old one.
A possible solution is to try to generalize the trampoline implementation of #636 as shown in the paper linked below. Then we can make
Trampoline<A> = Free<ForFunction0, A>
like in Arrow.Expected outcome
foldMap is stack safe
Observed outcome
foldMap is not stack safe
Code to reproduce the Bug
saferFree branch in my fork.
Bow modules, version, platform
Bow module, master branch.
Tooling
Other
Some explanation of the issue and possible solution can be found in this paper
The text was updated successfully, but these errors were encountered: