pub fn boxed_run<K>(kernel: K) -> BoxedRunwhere K: Kernel + Clone + Send + Sync + 'static, K::State: Send + Sync + Clone,
Wraps a concrete Kernel into a BoxedRun.
Kernel
BoxedRun
The kernel is cloned for each search so the boxed closure can be reused.