Fredrik Ekre
Fredrik Ekre
Can you add a blurb before the tree that describes what it shows? Does it make sense to also add an indication which ones are abstract types since the `Abstract*`...
LanguageServer.jl now offers a quickfix code action for replacing unused argument with `_` (https://github.com/julia-vscode/LanguageServer.jl/pull/1072), but then you run into this issue pretty often.
`man pcre` says it has to be valid Unicode points, but that range have a bunch of invalid ones: ``` julia> count(x -> !isvalid(Char(x)), 0x00A0:0x10FFFD) 2048 ``` In any case,...
It is still an error from PCRE, but this one doesn't show up in other environments (e.g. https://regex101.com/) so perhaps there is some compile setting that is different.
I would much rather have an error thrown at me when the matrix is singular. If you want a least-squares solution you should, IMO, use `qr` explicitly.
> However, I don't think it's terribly consistent that this works for all systems EXCEPT those that happen to be square. Agreed, but I would prefer `\` to only apply...
Could run the app test inside a container with no Julia install. (Would still be the same machine, but at least paths etc that are built into the app will...
Logging goes to `stderr`, normally.
It is not set for Julia's sake, but I agree that it is a bit annoying to set since it makes different Julia version clash with each other. How about...
No, my suggestion should leave `LD_LIBRARY_PATH` identical to what it was before (unset if unset, populated if populated).