schedule improvements, new default is FAST

This commit is contained in:
van Hauser
2020-12-11 10:28:39 +01:00
parent 1a3c9bc36d
commit 8a1acac559
3 changed files with 6 additions and 5 deletions

View File

@ -47,7 +47,7 @@ double compute_weight(afl_state_t *afl, struct queue_entry *q,
u32 hits;
if (likely(afl->schedule >= FAST && afl->schedule < RARE)) {
if (likely(afl->schedule >= FAST && afl->schedule <= RARE)) {
hits = afl->n_fuzz[q->n_fuzz_entry];
if (hits == 0) { hits = 1; }