pub enum ScoreNormalization {
MinMax,
None,
}Expand description
Strategy for normalizing scores across route legs before ranking.
Variants§
MinMax
COR-004: Global min-max normalization to [0, 1] range across all fused results. Applied after duplicate fusion, before multi-leg boosting.
None
No normalization — raw scores from each leg.
Trait Implementations§
Source§impl Clone for ScoreNormalization
impl Clone for ScoreNormalization
Source§fn clone(&self) -> ScoreNormalization
fn clone(&self) -> ScoreNormalization
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScoreNormalization
impl Debug for ScoreNormalization
Source§impl<'de> Deserialize<'de> for ScoreNormalization
impl<'de> Deserialize<'de> for ScoreNormalization
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ScoreNormalization
impl RefUnwindSafe for ScoreNormalization
impl Send for ScoreNormalization
impl Sync for ScoreNormalization
impl Unpin for ScoreNormalization
impl UnsafeUnpin for ScoreNormalization
impl UnwindSafe for ScoreNormalization
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