Julian Hall
Julian Hall
Are you running multiple serial instances of the MIP solver in parallel? Or a single instance with multiple threads? Are you able to export the model as an MPS file?
In what language are you passing your model to HiGHS and (trying to) solve it? That said, since you're running multiple serial instances in parallel, it suggests that it's not...
> We use c# to pass the model to HIGHS. In that case use `Highs_writeModel` https://github.com/ERGO-Code/HiGHS/blob/5ce7a27531a7f4166ee5a8343169a1014febb41a/src/interfaces/highs_csharp_api.cs#L191 passing `"foo.mps"` as filename.
> We also noticed this when running it serial (so request by request) it also gives the same error. Very odd. Maybe it _is_ worth extracting the model
Your list of integrality values must be as long as the number of columns in the range. You appear to be passing only one, so it will read beyond that
OK thanks, I'll look at this
Closed by #2450
I don't get spurious infeasibility for `TIMES-GEO_E4SMA_Base_scenariocplex.lp`, but I guess that's because the logging you give is for `TIMES-GEO-global-base-31-20ts`, not `TIMES-GEO_E4SMA_Base_scenariocplex.lp` or `TIMES-GEO_E4SMA_NetZero_scenariocplex.lp`
Now trying to get https://storage.googleapis.com/solver-benchmarks/TIMES-GEO-global-base-31-20ts.lp
> Thanks for looking into it. Does Highs v 1.10.0 solve `TIMES-GEO_E4SMA_Base_scenariocplex.lp` successfully for you? I've not tried the interior point solver, having decided to see what the PDLP solver...