Martin Stránský

Results 3 issues of Martin Stránský

**Describe the bug** MIP allows to create constraint like `mip.LinExprTensor >> import mip >>> m = mip.Model() >>> y = m.add_var_tensor((10,2), 'y') >>> x = m.add_var('x') >>> m += y...

[Incorrect imports in Model #388](https://github.com/coin-or/python-mip/issues/388)

**Describe the bug** Cannot pass own [`solver`](https://github.com/coin-or/python-mip/blob/0ccb81115543e737ab74a4f1309891ce5650c8d5/mip/model.py#L53) to `class Model` constructor because of incorrect imports. **To Reproduce** To reproduce: ```python import mip from mip.cbc import SolverCbc class MySolver(SolverCbc): pass class...