Dan Kortschak

Results 357 comments of Dan Kortschak

Sorry, I'm having second thoughts about this change. I'm thinking about how much we can lend from type/kind naming in the reflect package; under this we would have `Datatype`=>`Type` and...

When did that happen? I thought this used to work. Oh, these are right-aligned, right? Is there code for this?

This is not true. There is no C binding in gonum.org/v1/gonum/mat that is not guarded by a build tag, and only is used by testing when that build tag is...

That's fine, just noting that it's not true. An import of gonum.org/v1/gonum won't cause any Cgo code to be built unless the user wants that.

Related though, there is asm that is not guarded in the default case. The pure Go code is built when either the 'safe'/'appengine' or 'noasm' tags are present. Is there...

So the follow-on then is whether asm in the source will be a problem.

@mvertes Yes, I realised that after looking through the behaviour, hence [this PR](https://github.com/gonum/exp/pull/37). I'm interested though in being able to use Gonum via the repl (or something along those lines...

An update on this; while the import still fails, it fails for a sensible reason now, the inability to use the asm implementations in the imported code. This will likely...

>How do you add the bibliography? The bibliography is included with `\bibliography{bibliography}` and the bibliography.bib file is placed in the working directory. This worked until recently (it would be surprising...

My minimal reproducer is ``` \begin{document} \cite{} \verb|\end{document}| \bibliography{bibliography} \end{document} ``` with a valid `bibliography.bib`. Removing the `\verb|\end{document}|` fixes the problem, so I suspect that the quoted `\end{document}` is being...