You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Changes
* `PostTagSearcher` now correctly uses the time constraint parameter.
* `ConclusionReason` will either be `TimeConstraintExceeded` or `NotEvaluated` based on whether the time constraint was reached before or during the evaluation of a particular init.
## Comments
* Checkpoints #21 should be merged first.
* The time constraint will be exceeded slightly because results need to be collected.
## Examples
* The first result of the following concludes with reason `TimeConstraintExceeded`:
```c++
PostTagSearcher::EvaluationParameters parameters;
parameters.groupTimeConstraintNs = 100000000; // 0.1 seconds
const auto result = PostTagSearcher().evaluateRange(
64, 1473593303835332608, 1473593303835332609, parameters);
```
* The other two results are `NotEvaluated` for now, but that can change after parallelization is implemented.
0 commit comments