We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3625e88 commit fdd2f53Copy full SHA for fdd2f53
libafl/src/schedulers/testcase_score.rs
@@ -15,12 +15,12 @@ use crate::{
15
Error,
16
};
17
18
-/// Compute the favor factor of a [`Testcase`]. Lower is better.
+/// Compute the favor factor of a [`Testcase`]. Higher is better.
19
pub trait TestcaseScore<S>
20
where
21
S: HasMetadata + HasCorpus,
22
{
23
- /// Computes the favor factor of a [`Testcase`]. Lower is better.
+ /// Computes the favor factor of a [`Testcase`]. Higher is better.
24
fn compute(state: &S, entry: &mut Testcase<S::Input>) -> Result<f64, Error>;
25
}
26
0 commit comments