mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-07 18:08:51 -06:00
Simplify BenchmarkRunner; update docs
This commit is contained in:
@@ -47,6 +47,25 @@ MIPSolveStats = TypedDict(
|
||||
},
|
||||
)
|
||||
|
||||
LearningSolveStats = TypedDict(
|
||||
"LearningSolveStats",
|
||||
{
|
||||
"Gap": Optional[float],
|
||||
"Instance": Union[str, int],
|
||||
"LP value": Optional[float],
|
||||
"Log": str,
|
||||
"Lower bound": Optional[float],
|
||||
"Mode": str,
|
||||
"Nodes": Optional[int],
|
||||
"Sense": str,
|
||||
"Solver": str,
|
||||
"Upper bound": Optional[float],
|
||||
"Wallclock time": float,
|
||||
"Warm start value": Optional[float],
|
||||
},
|
||||
total=False,
|
||||
)
|
||||
|
||||
IterationCallback = Callable[[], bool]
|
||||
|
||||
LazyCallback = Callable[[Any, Any], None]
|
||||
|
||||
Reference in New Issue
Block a user