What was wrong with Control.MonadPlus.Free?

According to this issue in the bug tracker the old definition does not obey the associative law.


Although I know little about such things, I suspect an other problem is redundancy:

Pure a
Plus [Pure a]
Plus [Plus [Pure a]]
...

all seem to represent the same thing. Free structures are generally supposed to be unique. There are times when they cannot be represented uniquely (e.g., free abelian groups) but when possible they should be.

Actually, I think the suggested alternative suffers from the same problem, although it might be possible to repair it by using NonEmpty instead of []. So this change could just be a matter of removing excess cruft from the library.


I believe that the representation itself was OK and that the lawfulness could have been remedied by changing these method signatures

iter :: Functor f => (f a -> a) -> ([a] -> a) -> Free f a -> a
iterM :: (Monad m, Functor f) => (f (m a) -> m a) -> ([m a] -> m a) -> Free f a -> m a

to

iter :: (Functor f, Monoid a) => (f a -> a) -> Free f a -> a
iterM :: (MonadPlus m, Functor f) => (f (m a) -> m a) -> Free f a -> m a

i.e.

  • use Monoid a instead of an arbitrary function [a] -> a in iter;
  • use MonadPlus m instead of an arbitrary function [m a] -> m a in iterM.

My guess is that it was removed (instead of fixed) just because it is not worth to keep around when FreeT f [] gives an equivalent representation.