diff --git a/libafl/src/fuzzer/mod.rs b/libafl/src/fuzzer/mod.rs index bbfbb69b16..ee39c2d6d6 100644 --- a/libafl/src/fuzzer/mod.rs +++ b/libafl/src/fuzzer/mod.rs @@ -583,6 +583,7 @@ where /// A trait to determine if a input should be run or not pub trait InputFilter { + /// should run execution for this input or no fn should_execute(&mut self, input: &I) -> bool; }