True when the last attempt exhausted its step budget. */
(&self)
| 31 | |
| 32 | /* True when the last attempt exhausted its step budget. */ |
| 33 | pub fn exceeded(&self) -> bool { self.steps.get() > self.budget } |
| 34 | |
| 35 | /* Leftmost search from the beginning. */ |
| 36 | pub fn search(&self, root: &Node, ngroups: usize) -> Option<Caps> { |
no test coverage detected