linopy icon indicating copy to clipboard operation
linopy copied to clipboard

Linear optimization with N-D labeled arrays in Python

Results 69 linopy issues
Sort by recently updated
recently updated
newest added

Dear all, I am getting several of these warnings when using linopy with PyPSA: Warning, line 133208941: Name 'x10609872' does not exist. It looks to me like a constraint or...

Hi everyone, I have an issue with CPLEX. for some problems, which Highs can solve, I get an unknown status from linopy, with the message that the problem is optimal...

Thanks for your efforts with linopy, they are much appreciated :) I know this project has `linear` in its name, but it does support some non-linearity in programs. I would...

Hi all, sometimes I get randomly these errors when calling model.solve: ``` 2024-11-13 15:05:34 [INFO] Optimization successful: Status: ok Termination condition: optimal Solution: 3017580 primals, 254750 duals Objective: 3.52e+08 Solver...

Static types of linopy are now exposed via `py.typed`. But this leads to tons of mypy problems in packages importing `linopy`. These need to be fixed. A good starting point...

When I name a coordinate "sign", an error is raised when I try to create an constraint. Here a short example to reproduce the issue: ```python import pandas as pd...

COPT has a python example of how to calculate the IIS to help debug infeasible solutions. It would be great to add this functionality to linopy. # Compute IIS if...