pub trait TestcaseScore<I, S> where
    I: Input,
    S: HasMetadata + HasCorpus<I>, 
{ fn compute(entry: &mut Testcase<I>, state: &S) -> Result<f64, Error>; }
Expand description

Compute the favor factor of a Testcase. Lower is better.

Required Methods

Computes the favor factor of a Testcase. Lower is better.

Implementors