Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 28 million developers.
Sign up
Pinned repositories
63 contributions in the last year
Contribution activity
August 2018
Created an issue in ekmett/machines that received 1 comment
Applicative and Monad instances for Mealy are inconsistent
> let m1 = unfoldMealy (\s a -> (a + s, a + s)) 0
> let mf = unfoldMealy (\s a -> (\b -> a + s + b), a + s)) 0
> cosieve (mf <*> m1) $ 1 :| [2,3]
1…
1
comment