Benoît Legat
Benoît Legat
I have found a small problem for which CSDP has issues with: ``` 4 1 3 0.0 0.0 0.5 1.0 0 1 2 1 0.5 0 1 3 1 0.5...
I was glad to see at Bartolomeo's talk at ICCOPT that OSQP will support querying differentiation information. We developed an extension of MOI for this at https://github.com/jump-dev/DiffOpt.jl. At the moment,...
See https://github.com/osqp/OSQP.jl/runs/5384596071?check_suite_focus=true#step:6:512 ``` signal (11): Segmentation fault in expression starting at /home/blegat/.julia/dev/OSQP/test/MOI_wrapper.jl:539 csc_spfree at /home/blegat/.julia/artifacts/c5f30b0b864e1623da3a7dc4d445e37ab3c33e8b/lib/libosqp.so (unknown line) osqp_cleanup at /home/blegat/.julia/artifacts/c5f30b0b864e1623da3a7dc4d445e37ab3c33e8b/lib/libosqp.so (unknown line) clean! at /home/blegat/.julia/dev/OSQP/src/interface.jl:224 _jl_invoke at /buildworker/worker/package_linux64/build/src/gf.c:2247 [inlined] jl_apply_generic...
This check: https://github.com/oxfordcontrol/OSQP.jl/blob/f50490536e41da2fef5f03216223090bd30698f8/src/interface.jl#L115-L118 does not work if there is zero offdiagonal entries which makes OSQP fail, see https://github.com/oxfordcontrol/OSQP.jl/pull/90
It seems `:verbose` is ignored when it is set by `update_settings!`, i.e. by `osqp_update_verbose`.
See https://www.juliaopt.org/MathOptInterface.jl/v0.9.1/apireference/#MathOptInterface.DualObjectiveValue
We define an abstract block diagonal matrix with an interface similar to the `BlockDiagonal` of this package here: https://github.com/JuliaOpt/SemidefiniteOptInterface.jl/blob/c83bfe9b521eafc5182465cba7c4ce0e9f43ab6b/src/mock.jl#L1-L30 It allows the block diagonal matrices returned by different SDP solvers...
I am having a very hard time creating a minimal crashing example for this bug because it is nonderterministic. If I execute 2 times the same code it can crash...
I tried the install instructions of the README. I'm running ArchLinux with the "libpng-1.6.37-3" package installed with pacman. After following the README instructions, skipping the part for installing libpng since...
The error comes from https://github.com/saschatimme/ImplicitPlots.jl/blob/4f4fe9df8b5c30104859e9440b269f09a787358e/src/ImplicitPlots.jl#L67 and can be reproduced with: ```julia julia> using DynamicPolynomials julia> @polyvar x y; julia> implicit_plot(x^2 + y^2; xlims=(-2,2), ylims=(-2,2)) ERROR: UndefVarError: p not defined Stacktrace:...