Valentin Kaisermayer
Valentin Kaisermayer
> For some reason with CairoMakie v0.8.13, MathTeXEngine is set to v0.4.3, which is weird since Makie requires v0.5. > > By deving Makie and using MathTeXEngine v0.5.1, it is...
The problem is that the `Tables.Schema` interprets a vector with `NaN` and `Float64` as a `Vector{Float64}`, which it actually is. However, this than results in a column of `REAL NOT...
I added some simple test but I do not know how to setup CI pipeline for github.
``` Warning: SubproblemManager::clear() called on non-empty SubproblemManager Error: Subproblem not found for Algorithm MADS Call stack: Main MADS MADS Initialization Call stack: Main MADS terminate called after throwing an instance...
Ok, it is the mutli-threading. Would downgrading Julia to the LTS version help?
I was using multi-threading to solve multiple optimization problems in parallel. I'm not able to share my original code but maybe I can come up with a MWE.
```julia import GalacticOptim import NOMAD rosenbrock(x, p) = (p[1] - x[1])^2 + p[2] * (x[2] - x[1]^2)^2 p = [1.0, 100.0] sols = Dict() Threads.@threads for i in 1:10 x0...
Can you share the `@distributed` version that works?
I think this needs some kind of problem traits, like `islinear`, `isquadratic`, `isnonlinear`, `ismixedinteger`, `isadable` in order to choose an appropriate solver. According to this table: https://docs.sciml.ai/Optimization/stable/#Overview-of-the-Optimizers `MOI` would be...