GregPlowman
GregPlowman
> does this happen on the nightly? Yes, with slightly different error messages, but more severe consequences. PC appears to lock up. I thought it looked like out of memory,...
JuliaLang PR [Allow specifying startup.jl via environment variable](https://github.com/JuliaLang/julia/pull/36368) Could this be relevant to LanguageServer LOAD_PATH issue? Would it be possible to specify a custom `startup.jl` to the language server?
I think a recursive self-reference field causes a `StackOverflowError` when trying to save with `JLD`. ``` using JLD, JLD2, BSON mutable struct Self self::Self function Self() this = new() this.self...
+1 name change to `NLSolve`. Easier now than later.
> but I don't think it works for me like a stack of environment Pkg.jl would search through for a package. > > For example when length(DEPOT_PATH)=3 it only reads...
Here's an attempt to come up with an allocation-free version: ``` using Combinatorics function myiterate(c::Combinatorics.Combinations, state = Int[min(c.t - 1, i) for i in 1:c.t]) item = myiterate!(state, c.n, c.t)...
It was suggested on a discourse thread that the lack of `@inline` on the iterate function caused the creation of the return tuple to allocate. Marking `iterate` with `@inline` does...
Here's a comparision with some other extended precision floating point data types: ``` using Quadmath using MultiFloats using DoubleFloats f(::Type{T}) where {T} = sqrt(zero(T) / zero(T)) f(Float64) # NaN f(BigFloat)...
Add tests?
Agree, the documentation could and should be improved to avoid misunderstanding. However, technically it is correct to say "Wait for and take a free worker from pool ...". If the...