Docs: fix example; export MinPrecisionThreshold

This commit is contained in:
2020-05-05 13:12:30 -05:00
parent abbd2d2207
commit a803d73a3b
6 changed files with 5 additions and 4 deletions

View File

@@ -59,5 +59,5 @@ a `PrimalSolutionComponent` which achieves 95% precision, possibly at the cost o
more aggressive, this precision may be lowered.
```python
comp = PrimalSolutionComponent(threshold=MinPrecisionThreshold(0.98))
PrimalSolutionComponent(threshold=MinPrecisionThreshold(0.95))
```

View File

@@ -14,6 +14,7 @@ from .components.primal import PrimalSolutionComponent
from .components.branching import BranchPriorityComponent, BranchPriorityExtractor
from .classifiers.adaptive import AdaptiveClassifier
from .classifiers.threshold import MinPrecisionThreshold
from .benchmark import BenchmarkRunner