Skip to content

Commit

Permalink
changed the default schedule to coe
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Oct 4, 2020
1 parent 383cd48 commit bab60b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/afl-fuzz-state.c
Original file line number Diff line number Diff line change
Expand Up @@ -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? */
Expand Down
4 changes: 2 additions & 2 deletions src/afl-fuzz.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static void usage(u8 *argv0, int more_help) {

"Execution control settings:\n"
" -p schedule - power schedules compute a seed's performance score:\n"
" <explore(default), rare, exploit, seek, mmopt, coe, "
" <explore, rare, exploit, seek, mmopt, coe(default), "
"fast,\n"
" lin, quad> -- see docs/power_schedules.md\n"
" -f file - location read by the fuzzed program (default: stdin "
Expand Down Expand Up @@ -928,7 +928,7 @@ int main(int argc, char **argv_orig, char **envp) {
OKF("Using seek power schedule (SEEK)");
break;
case EXPLORE:
OKF("Using exploration-based constant power schedule (EXPLORE, default)");
OKF("Using exploration-based constant power schedule (EXPLORE)");
break;
default:
FATAL("Unknown power schedule");
Expand Down

0 comments on commit bab60b6

Please sign in to comment.