diff options
author | van Hauser <vh@thc.org> | 2020-10-04 20:45:59 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-10-04 20:45:59 +0200 |
commit | bab60b68d968492d689bc5963bd775b10c6292e8 (patch) | |
tree | e10a62a40bb897ac0e380e87fc0a41ac4f8db865 /src/afl-fuzz-state.c | |
parent | 383cd487a2c28012c80341f8517e473120af4d19 (diff) | |
download | afl++-bab60b68d968492d689bc5963bd775b10c6292e8.tar.gz |
changed the default schedule to coe
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r-- | src/afl-fuzz-state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index a8e56e60..4a1e739f 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -87,7 +87,7 @@ void afl_state_init(afl_state_t *afl, uint32_t map_size) { afl->w_end = 0.3; afl->g_max = 5000; afl->period_pilot_tmp = 5000.0; - afl->schedule = EXPLORE; /* Power schedule (default: EXPLORE) */ + afl->schedule = COE; /* Power schedule (default: COE) */ afl->havoc_max_mult = HAVOC_MAX_MULT; afl->clear_screen = 1; /* Window resized? */ |