Add StaticLazyComponent.xy

This commit is contained in:
2021-03-30 17:48:04 -05:00
parent 07388d9490
commit 205a972937
3 changed files with 80 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
# Released under the modified BSD license. See COPYING.md for more details.
from typing import Optional, Dict, Callable, Any, Union, Tuple, List
from typing import Optional, Dict, Callable, Any, Union, Tuple, List, Set
from mypy_extensions import TypedDict
@@ -16,6 +16,8 @@ TrainingSample = TypedDict(
"LP log": str,
"LP solution": Optional[Solution],
"LP value": Optional[float],
"LazyStatic: All": Set[str],
"LazyStatic: Enforced": Set[str],
"Lower bound": Optional[float],
"MIP log": str,
"Solution": Optional[Solution],