Eric Hanson
Eric Hanson
Right now, calling `solve!` calls `conic_problem` which makes a new `UniqueConicForms()` object, then fills it up by recursing down the tree which constitutes the problem via `conic_form!`. Then if you...
I have been thinking about how to update Convex to MathOptInterface (https://github.com/JuliaOpt/Convex.jl/issues/262). While it's not so complicated, I am worried about introducing subtle bugs. In particular, I think retrieving dual...
There was a post on discourse requesting partially specified problems: . There is also a good description in the CVX manual: http://web.cvxr.com/cvx/doc/advanced.html#new-functions-via-partially-specified-problems. I think this would be great, as it...
The [import](http://mirrors.ibiblio.org/CTAN/macros/latex/contrib/import/) package allows including with respect to relative paths so that one doesn't need to mess with the graphics path, and allows nested inputs to work with respect to...
If I have a subpackage in a repo (possibly more than one), I want to be able to build releases for a package based on tags like `MyPackage-v0.1.0` instead of...
I think it would be awesome if there was an `@gif` block that acted like an `@repl` but instead of printing the commands linearly, it generated an asciinema gif and...
I was wondering if there could be a super verbose style that does things like expand `cond && X` to ```Julia if cond X end ``` Then the formatter could...
Convex.jl v0.14.17+ supports both MOI v0.9 and v0.10, so these can be restored. (taken out in https://github.com/ds4dm/Tulip.jl/pull/105)
Since `@pure` is a no-op after https://github.com/JuliaLang/julia/pull/44776. See the [docs](https://docs.julialang.org/en/v1.9-dev/base/base/#Base.@assume_effects) for `@assume_effects`. Can also use `Base.@infer_effects` to see if it’s needed (https://github.com/JuliaLang/julia/pull/44785).
```julia julia> using CairoMakie julia> fig = lines(rand(10)); julia> save("test.png", fig) # works CairoScreen{Cairo.CairoSurfaceBase{UInt32}} with surface: Cairo.CairoSurfaceBase{UInt32}(Ptr{Nothing} @0x00007fef60cecfa0, 800.0, 600.0) julia> save("test.png", (fig, )) # wrong argument gives confusing errors...