mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-09 16:51:34 +00:00
changed the default schedule to coe
This commit is contained in:
parent
383cd487a2
commit
bab60b68d9
@ -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? */
|
||||
|
@ -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 "
|
||||
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user