Expand description
The rules that define the DL8.5 problem, plus the time limit. None of them is relaxable except, optionally, the time limit.
Structsยง
- Lower
Bound Rule - Stops at nodes whose lower bound reaches the upper bound, or whose upper bound is zero: no subtree there can improve the parent.
- MaxDepth
Rule - Turns nodes at the maximum depth into leaves.
- MinSupport
Rule - Turns nodes with fewer than
min_supportinstances into leaves. - Pure
Node Rule - Turns nodes with zero error into leaves.
- Similarity
Lower Bound Rule - Applies the similarity lower bound of DL8.5: stops when the bound reaches the upper bound, and makes the node a leaf when its error already meets the bound.
- Time
Limit Rule - Stops the search once the time limit is reached.
- Usable
Node Rule - Stops at nodes already solved in an earlier visit: their error and the bound they were solved under are both known. Always active.