Alexandre Moine

Results 13 issues of Alexandre Moine

Hi there, This small PR remove a redundant definition of `option_map`. While changing the file, I was not able to retain myself to factorize also some code; I hope this...

Hi, I have been working on a different implementation of `Algebra.Graph`, based on `Algebra.Graph.NonEmpty`. The idea is to have: ```Haskell newtype Graph a = G (Maybe (NonEmptyGraph a)) ``` Using...

I investigated about poor results of `alga` in https://github.com/haskell-perf/graphs I found that the `edges` function from `Algebraic.Graph` is a bit naive: ```Haskell edges = overlays . map (uncurry edge) ```...

Hi, I did not found a better title, but here is the idea. Reading the `Algebra.Graph` code, I found there was some functions using `foldg` with the same two last...

Hi there, I am experimenting with JFlex (copy of the file used here: https://gist.github.com/nobrakal/a532bae3af834ca74e21619483283c2e ) and got this error: ``` $ jflex --dot blabla.jflex Reading "blabla.jflex" Constructing NFA : Unexpected...

bug

Hi, I am always with my idea of micro-tuning. I work with amsynth in a raspberry with a master keyboard, and, with that setup, I just can't change my tuning...

Type: Enhancement

This is a try to fix #72 . The main new function is `mkLookupNode`, which is `mkNode` plus a Boolean saying if the node was already present. I also added...

Hi, I am trying to implement `transpose` (the function that invert all the edges of the graph) for my benchmarks. I made: ```Haskell transpose :: Gr () Int -> Gr...

Hi, I want to benchmark `hash-graph` for the 2018 Google Summer of Code and I need to construct edges with `Edge`. ```Haskell data Edge a b = Edge !b !a...

Hi, Here, I add four new argument in the configure file: --with-external-cjson --with-external-mopo --with-external-rtaudio --with-external-rtmidi Each one can be use separately, and use system libraries instead of bundled ones. I...