Jan Lukas Bosse
Jan Lukas Bosse
With the current version of it is not possible to remove multiple vertices in one go, like it is possible with the `rem_vertices!()` function of `LightGraphs.jl`. I have a, probably...
Currently, variables that are defined via `@enum` are marked as `Missing Reference`. **Current behaviour:** ```julia @enum MyEnum A=0 B=1 C=2 D=3 ■■■■ Missing reference: D enumarray = [A, B, B,...
Hey everyone, I recently implemented the simulatenous stochastic perturbation algorthm (SPSA) and the model gradient descent (MDG, first developed in https://arxiv.org/abs/2005.11011) in a roughly Optim.jl compatible way. Is there interest...
The docstring for `curve_fit()` does not mention that `curve_fit()` accepts `kwargs` and that these get forwarded to `LsqFit.levenberg_marquardt()`. This made me miss the options `upper` and `lower` (as described [here](https://stackoverflow.com/questions/44509964/solver-for-non-linear-least-squares-with-boundary-constraints)...
I have matrix with a three-fold degenerate extremal eigenvalue and `ArnoldiMethod.partialschur` finds only one of them while e.g. `Arpack.eigs` finds all three. See the following MWE: ```julia using Arpack using...
Currently named doctests fail, if there is a trailing space after the beginning the jldoctest block. Example ```jldoctest mytest a = 1 b = 2 a + b # output...
I am implementing my own `ZerothOrderOptimizer` and have the suspicion that https://github.com/JuliaNLSolvers/Optim.jl/blob/38cfbe895dc8126ae029c5d3165d92b6232f3bd4/src/api.jl#L87 should be ```julia g_isfinite = isfinite(g_residual(r)) || isnan(g_residual(r)) ``` instead. Note that for non-differentiable functions `g_residual(d)` is defined...
Wrapped the call of `command_main()` in an `if abspath(PROGRAM_FILE) == @__FILE__` to run it only if the sript is directly called from the command line. This makes it possible to...
It would be great if `command_main()` only gets called when the script is run from the command line and not when it is `include()`ed e.g. in a REPL session. This...