pub const ENRICH_QUALITY_ACCEPT_RATE_WEIGHT: f64 = 0.5;Expand description
Weight given to the accept rate when blending it with mean grounding score into a single quality figure.
The blend was written as 0.5 * accept_rate + 0.5 * mean_score with both
halves anonymous. Naming one of them states that the two signals are
deliberately equal rather than accidentally so, and gives the pair a single
place to change.