Expand description
Typed errors for the evaluator.
Per the workspace clippy lints, we forbid panic!, unwrap, and
expect in non-test code. Every fallible operation in vernier-core
returns Result<_, EvalError>, including Similarity::compute
(per ADR-0005).
Enumsยง
- Eval
Error - Unified error type for evaluation paths.
- Partial
Format Error Kind - Sub-discriminator for
PartialError::Format. The validation pipeline runs cheapest-first, so the variant also indicates how far the validator got before tripping.