You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if solver_supports(solver_name, SolverFeature.IIS_COMPUTATION):
302
298
```
303
299
300
+
**Note**: The quadratic solver check (`solver_name not in quadratic_solvers`) is NOT migrated to use `solver_supports()`. This is because tests may modify the `quadratic_solvers` list at runtime to exclude solvers with platform-specific bugs (e.g., SCIP on Windows). The list-based approach allows this runtime modification.
301
+
304
302
### Step 4: Update `variables.py`
305
303
306
304
Replace:
@@ -330,7 +328,7 @@ Note: `io.py` doesn't need changes - the check at line 508 (`"highs" not in avai
0 commit comments