Skip to main content

score

Function score 

Source
pub fn score(c: &Candidate<'_>) -> i32
Expand description

Bayesian sort key: log_prior + log_likelihood. The single source of truth for ranking. Higher = better.

Producers that wish to expose score(c) over the FFI boundary as a f64 may convert via (score(c) as f64) / (Q4 as f64) to recover nats / bits in natural log space.