Oscar Dowson
Oscar Dowson
It's more similar to Ipopt. The wrapper could cache the nonlinear Evaluator to avoid `MOI.initialize`, but Charlie is saying that there will still be some overhead within Uno (just like...
That doesn't appear to have worked around the issue because we're now hitting this: https://github.com/jump-dev/SDPA.jl/pull/57
Just confirming that https://github.com/JuliaPackaging/Yggdrasil/pull/8249 fixed this for SDPA. https://github.com/jump-dev/SDPA.jl/actions/runs/8197171105/job/22418710526?pr=61
I had this issue as well. Here was the work-around I came up with: ````Julia ```@example try #hide rand(2,2)'ones(3) catch err; showerror(stderr, err); end #hide ``` ```` Just calling `@error...
Does this indicate that we're missing a lot of tests for this area of the code? I guess all the JuMP tests query row-wise, not col-wise.
@jeffreydeankelly2 can you provide a reproducible example? The binaries work for me in Julia.
What happens if you compile HiGHS yourself instead of using the Julia binaries? Note that there are some minor changes in the header: some `int` become `HighsInt` etc. I'm also...
Yes, if you're interfacing the callback you'll need to use the latest header and potentially make some minor changes to your code. It's probably easiest to see a diff of...
> HIGHS runs without raising any exception however it does not give the correct global solution for the MIP - this is another issue. :+1: open an issue with a...