Oscar Dowson
Oscar Dowson
It seems like we could also make a more efficient method in HiGHS' C API to modify a single bound, instead of the iterator that they currently do. (We shouldn't...
I think this is asking for a more efficient method in the C API, not JuMP
> The model build time is dominated by add_variable (most of the adds in the last line in the graph) Okay... but how much time does this actually take
And how long in wall time is that?
This should be fixed in HiGHS then. There's no way that this overhead is because of JuMP.
Closed by #2574
We should do a benchmark on a large pglib case with `compute_ac_pf`.
Document how to dump the IIS while we're at it.
You're on the right track. Here's how I would write your current model: ```julia using SDDP, HiGHS T = 5 c_initial_capacity = 80 c_demand = [80, 120, 150, 180, 200]...
> I copied it from an example Which? I have been trying to remove all traces of GLPK because people keep using it! > If you mean the number of...