Justus Sagemüller
Justus Sagemüller
Something noncompletely unreasonable like ``` "non" H.i "complete" "ly" ``` will give different results depending on which rendered is used: - `Text.Blaze.Renderer.Text.renderMarkup` gives ``` noncompletely ``` as intended. - `Text.Blaze.Renderer.Pretty.renderMarkup`...
This basic subject has been variously discussed before – https://github.com/bos/aeson/issues/227 https://github.com/bos/aeson/issues/181 The thing is that Aeson can't make a distinction between integer values and floating-point values (scientific values) which merely...
Although the fact that HaTeX uses Haskell syntax already is a significant advantage for writing documents in it (as opposed to in LaTeX itself), “raw HaTeX” also has a few...
The `IsString` instance is pretty robust as far as ASCII is concerned, [escaping characters that would be interpreted as control characters by LaTeX](https://github.com/Daniel-Diaz/HaTeX/blob/master/Text/LaTeX/Base/Syntax.hs#L136) and instead producing the code that's needed...
For most users, it is probably most sensible and convenient to let Spacemacs automatically install proofgeneral from Elpa. ...Which is what it does _just like that_, if nothing contrary is...
Running `odl/test/space/pspace_test.py` results in several failures, all of them due to this error: ``` from odl.space import ProductSpace if isinstance(space, ProductSpace): > return np.array([noise_array(si) for si in space]) E ValueError:...
The standard way to _wait_ in the Haskell IO monad is [threadDelay](http://hackage.haskell.org/package/base-4.9.0.0/docs/Control-Concurrent.html#v:threadDelay). This works reasonably well, but the type of this action is awkward – integer time in magic-number-micro–seconds. Surely...
The `TensorSpace`, `LinearSpace` and `FiniteDimensional` classes are pretty bloated, with rather technical methods. It would be very cumbersome having to define all those instances for every custom vectorspace. It shouldn't...
While [an IHaskell notebook](https://github.com/leftaroundabout/linearmap-family/blob/master/test/matrices.ipynb) works pretty well for interactive test during development and, with git, also offers really good insight about how behaviours change with each commit, this is definitely...
A linear algebra library is of course a really speed-critical application. I'm sure the performance is very much less than optimal and could be improved substantially by well-placed `{-# INLINE...