feat: add ThresholdPruner for fixed-bound trial pruning

This commit is contained in:
Manuel Raimann
2026-02-11 16:28:22 +01:00
parent abe15bdd7b
commit 8199ba6b43
4 changed files with 151 additions and 2 deletions
+2
View File
@@ -5,8 +5,10 @@
//! discarding unpromising trials before they complete, saving compute.
mod nop;
mod threshold;
pub use nop::NopPruner;
pub use threshold::ThresholdPruner;
use crate::sampler::CompletedTrial;