pub enum Decision {
NeedMoreData {
sessions_each: usize,
required: usize,
},
Hold {
posterior: f64,
},
Promote {
posterior: f64,
},
}Expand description
Outcome of a promotion evaluation.
Variants§
NeedMoreData
At least one arm has too few sessions to decide yet.
Hold
Enough data, but posterior below threshold. Keep running.
Promote
Promote: posterior crossed threshold.
Trait Implementations§
impl Copy for Decision
impl StructuralPartialEq for Decision
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnsafeUnpin for Decision
impl UnwindSafe for Decision
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more