Oscar Dowson

Results 184 issues of Oscar Dowson

x-ref https://github.com/jump-dev/Pajarito.jl/pull/453

https://github.com/lanl-ansi/Alpine.jl/issues/223 rises from the grave. I don't remember if we support user-defined functions, but we should at least throw a nicer error message: ```Julia (alpine) pkg> st Status `/private/tmp/alpine/Project.toml` [07493b3f]...

bug

x-ref https://github.com/jump-dev/MathOptInterface.jl/pull/2085 These excluded tests are also related: https://github.com/ds4dm/Tulip.jl/blob/a0032b58ee2665f7270f854a09368043cd8f0e55/test/Interfaces/MOI_wrapper.jl#L23-L29

Closes #195 Let's see if the dual bugs in HiGHS are now fixed.

https://github.com/jump-dev/DiffOpt.jl/blob/8dfa684c49ad51a0e6801c4b7f1ea3d167c84812/src/objective_container.jl#L27-L33

Solve first-stage. Get state variables. Then try with convex combination of previous iteration. Use `x = a * x(k) + (1 - a) x(k-t)`. https://co-at-work.zib.de/slides/Donnerstag_24.9/Benders_decomposition-Implementation.pdf

```Julia using SnoopCompile tinf = @snoopi_deep include("docs/src/examples/Hydro_thermal.jl") import ProfileView fg = flamegraph(tinf) ProfileView.view(fg) itrigs = inference_triggers(tinf) mtrigs = accumulate_by_source(Method, itrigs) modtrigs = filtermod(SDDP, mtrigs) ``` ![image](https://github.com/odow/SDDP.jl/assets/8177701/8885ecd9-d9d3-4a69-a4c4-8ac2cb9a2bfd)

The asynchronous solver currently uses multiprocessing. This causes a lot of excess RAM usage because we need N copies of the full problem. If we introduced a lock to every...

feature-request

The MOI wrapper eagerly updates the row indices of constraints in a model upon deletion: https://github.com/jump-dev/Gurobi.jl/blob/38464c27b96e9818257b22c61d2458890957d0fe/src/MOI_wrapper/MOI_wrapper.jl#L2115-L2129 We should instead do what we do for variables and lazily delay the update...

bug