InternalSolver: Better specify and test infeasibility

This commit is contained in:
2021-01-21 09:15:14 -06:00
parent 05497cab07
commit 6890840c6d
9 changed files with 134 additions and 65 deletions

View File

@@ -22,7 +22,7 @@ TrainingSample = TypedDict(
LPSolveStats = TypedDict(
"LPSolveStats",
{
"Optimal value": float,
"Optimal value": Optional[float],
"Log": str,
},
)