We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f973ac commit 806a221Copy full SHA for 806a221
src/next_item_rules/strategies/exhaustive.jl
@@ -39,6 +39,12 @@ function best_item(
39
responses::TrackedResponses,
40
items
41
) where {ItemCriterionT <: ItemCriterion}
42
- #, rule.strategy.parallel
43
exhaustive_search(rule.criterion, responses, items)[1]
44
end
+
45
+function best_item(
46
+ rule::ItemStrategyNextItemRule{ExhaustiveSearch, ItemCriterionT},
47
+ responses::TrackedResponses
48
+) where {ItemCriterionT <: ItemCriterion}
49
+ best_item(rule, responses, responses.item_bank)
50
+end
0 commit comments