Oscar Dowson

Results 907 comments of Oscar Dowson

I don't think there is a good way of doing this, because the `y` variable that you see is not part of the model that is actually solved. You really...

Was there any progress on this? We could just open in MibS instead with the MPS and AUX files.

The PAO documentation is also good reading: https://pao.readthedocs.io/en/latest/overview.html https://pao.readthedocs.io/en/latest/examples.html

I took a look at this and started hacking some things. But it's actually a little tricky, because now that we abstract the AD from the `Nonlinear.Model` object, there's no...

Not sure. It'd still take some changes in Ipopt.jl to implement properly. I think we should wait to see someone complain that it is a bottleneck. Premature optimization and all...

We discussed this on the monthly nonlinear call.

@ccoffrin wants to properly benchmark on an AC power flow problem.

I talked with the folks at https://github.com/LAMPSPUC yesterday, and this is a problem for them with PowerModels. So yes, I've now seen it in the wild. (They want to solve...

There's the `copy_conflict` function: ```Julia julia> using JuMP, Gurobi julia> model = Model(Gurobi.Optimizer); julia> set_silent(model) julia> @variable(model, 0.1 compute_conflict!(model) julia> conflict, index_map = copy_conflict(model); julia> print(conflict) Feasibility Subject to x...

I have a start here: https://jump.dev/JuMP.jl/previews/PR3043/tutorials/getting_started/debugging/ Comments appreciated #3043