David Widmann
David Widmann
Currently, the title of the comment created by the action reads "Julia vlts" when running tests with the `'lts'` Julia version: https://github.com/JuliaNLSolvers/Optim.jl/pull/1198#issuecomment-3479462777 I think it would be easiest to just...
I noticed that the package does not support Interpolations 0.16 yet. It seems CompatHelper was disabled automatically due to inactivity, possibly there exist new releases for other dependencies as well.
[Ternary plots](https://en.wikipedia.org/wiki/Ternary_plot) would be nice.
This PR extends #502 based on @DilumAluthge's suggestions in https://github.com/JuliaRegistries/CompatHelper.jl/pull/502#issuecomment-3183867774. I added an option `open_prs_for_extras` that can be set to `IfExistingCompatExtras()` (the default), `AllExtras()` or `NoExtras()` [my gut feeling is...
Fixes #964. On the master branch: ```julia julia> using StatsBase, BenchmarkTools julia> x = randn(10_000_000); julia> @benchmark ecdf($x) BenchmarkTools.Trial: 7 samples with 1 evaluation per sample. Range (min … max):...
The motivation for the test is to check that out-of-place `cov2cor` and `cor2cov` of `Hermitian` and `Symmetric` matrices only write to the active triangle. But it's a bit unreliable (see...
Fixes https://github.com/JuliaStats/StatsBase.jl/issues/950.
A MWE: Start `julia --depwarn=error` and execute ```julia julia> using Documenter julia> module E module B struct C end export C Base.@deprecate_binding D C end using .B export C, D...
Based on https://github.com/JuliaNLSolvers/NLSolversBase.jl/pull/168 and https://github.com/JuliaNLSolvers/LineSearches.jl/pull/187. ~~The diff would be cleaner if #1195 (which depends on #1209) would be available on the master branch.~~ Based on #1212. --- Currently, tests are...
I think the current design of termination codes is a bit unfortunate as it does not allow multiple termination codes to be active at the same time. While it is...