Oscar Dowson

Results 1419 comments of 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

This should be fixed in HiGHS then. There's no way that this overhead is because of JuMP.

We should do a benchmark on a large pglib case with `compute_ac_pf`.

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...