Fix linting.

This commit is contained in:
Mikael CAPELLE
2024-12-03 14:11:29 +01:00
parent 5c43eb2c73
commit b32d46b641
49 changed files with 1160 additions and 353 deletions

View File

@@ -0,0 +1,29 @@
from __future__ import annotations
class SolveDetails:
@property
def time(self) -> float: ...
@property
def status_code(self) -> int: ...
@property
def status(self) -> str: ...
@property
def problem_type(self) -> str: ...
@property
def columns(self) -> int: ...
@property
def nb_linear_nonzeros(self) -> int: ...
@property
def mip_relative_gap(self) -> float: ...
gap = mip_relative_gap
@property
def best_bound(self) -> float: ...
@property
def nb_iterations(self) -> int | tuple[int, ...]: ...
@property
def nb_nodes_processed(self) -> int | tuple[int, ...]: ...
def print_information(self) -> None: ...
def to_string(self) -> str: ...
def has_hit_limit(self) -> bool: ...