ForceBru

Results 46 comments of ForceBru

The second-to-last value is the variance of a Normal distribution, it should never be exactly zero, so that's an infeasible point. Not sure how it got there. I guess the...

> you do not explicitly prevent the error cases from happening Is there something I could do about this on the modeling side? I've always been doing it like here:...

I did a change of variables `v = exp(l/2)` and tried to optimize over `-Inf < l < Inf`, but getting segmentation faults all over the place: https://github.com/cvanaret/Uno/issues/443#issuecomment-3570700641.

> The segfaults are fixed in UnoSolver.jl v0.1.6. Could you try again? Yes, I don't encounter any segfaults anymore

Bump, this is still relevant (throws a warning with ForwardDiff) as of Optimization v4.7.0.

For me, every single call to `UnoSolver.uno` results in a segfault when using the latest version 0.1.5. # MWE ```julia import Pkg Pkg.activate(temp=true) Pkg.add([ Pkg.PackageSpec("SpecialFunctions"), Pkg.PackageSpec(name="ADNLPModels", version="0.8.13"), Pkg.PackageSpec(name="UnoSolver", version="0.1.5"), ])...