few
few
``` Aider v0.27.0 Model: gpt-4-1106-preview using udiff edit format Git repo: .git with 20 files Repo-map: using 1024 tokens ``` I'd like to show the model screenshots of the app...
After reading https://aider.chat/2024/04/09/gpt-4-turbo.html I was wondering if there is a way to improve the new model's score in the refactoring benchmark. I executed a small number of the tests and...
Aider v0.28.1-dev (9b2e6975843d253430c68ad011bcab27fb3e23cf) Model: openai/gpt-4-turbo using udiff edit format Git repo: none Repo-map: using 1024 tokens openai/gpt-4-turbo (among other models) support vision, but aider says: "Cannot add image file as...
In my modeling, I'm carrying around several linear expressions where sometimes I'm only interested in the value of the expressions and not the individual variables. It would be nice if...
The following code shows that adding to a linear_expression modifies it. This is highly problematic, if the linear expression is reused several times in the code. ```import highspy h =...
WARNING: LP matrix packed vector contains 2 |values| in [0, 0] less than or equal to 1e-09: ignore
With the `latest` branch (not with 1.7.2), I get lots of the following warnings: `WARNING: LP matrix packed vector contains 2 |values| in [0, 0] less than or equal to...
An accessor for the incumbent solution was already present in the callback data in highspy. But as pointed out in #1856 it was not properly implemented. This PR fixes that.
When setting mip_improving_solution_save=true mip_improving_solution_file=solution.sol each new solution is written to solution.sol. The problem is that the solution can be incomplete while highs is still running or when it gets killed....
When setting mip_improving_solution_save=true mip_improving_solution_file=solution.sol each new solution is written to solution.sol. The problem is that the solution can be incomplete while highs is still running or when it gets killed....
There are currently three callbacks to interrupt highs: `kCallbackSimplexInterrupt` `kCallbackIpmInterrupt` `kCallbackMipInterrupt` 1) There is no interrupt callback for `presolve` 2) A single "interrupt everything" callback would be nice. That way...