From 5c05b3d32d1e9cae50ffc4f06325ae8f15895079 Mon Sep 17 00:00:00 2001 From: lenawanel <115283664+lenawanel@users.noreply.github.com> Date: Tue, 15 Aug 2023 20:14:30 +0200 Subject: [PATCH] Update documentation of `feedbacks::map::OneOrFilledIsNovel` (#1423) this previously seemed to describe `NextPow2IsNovel` --- libafl/src/feedbacks/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/feedbacks/map.rs b/libafl/src/feedbacks/map.rs index f7c8389aea..f4ef3a52bc 100644 --- a/libafl/src/feedbacks/map.rs +++ b/libafl/src/feedbacks/map.rs @@ -207,7 +207,7 @@ where } } -/// A filter that only saves values which are at least the next pow2 class +/// Only consider `T::one()` or `T::max_value()`, if they are bigger than the old value, as novel #[derive(Clone, Debug)] pub struct OneOrFilledIsNovel {} impl IsNovel for OneOrFilledIsNovel