Add first model feature (constraint RHS)

This commit is contained in:
2021-03-02 17:21:05 -06:00
parent 31ca45036a
commit 1397937f03
17 changed files with 167 additions and 47 deletions

View File

@@ -71,6 +71,14 @@ LearningSolveStats = TypedDict(
total=False,
)
ModelFeatures = TypedDict(
"ModelFeatures",
{
"ConstraintRHS": Dict[str, float],
},
total=False,
)
IterationCallback = Callable[[], bool]
LazyCallback = Callable[[Any, Any], None]