Trait libafl::feedbacks::map::Reducer[][src]

pub trait Reducer<T>: Serialize + DeserializeOwned + 'static where
    T: Integer + Default + Copy + 'static + Serialize + DeserializeOwned
{ fn reduce(first: T, second: T) -> T; }
Expand description

A Reducer function is used to aggregate values for the novelty search

Required methods

Reduce two values to one value, with the current Reducer.

Implementors