diff options
author | van Hauser <vh@thc.org> | 2020-06-15 20:02:28 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-06-15 20:02:28 +0200 |
commit | ada59feda852a13207818f8202dabe517b721b35 (patch) | |
tree | 5a2ad980bad59ba2ac1790bef660fa235c4f1f36 /include/afl-fuzz.h | |
parent | af8d4d49ede0e4b3baab98f9b17505646859832a (diff) | |
download | afl++-ada59feda852a13207818f8202dabe517b721b35.tar.gz |
improve performance for default power schedule
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index f6158014..194d6b9d 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -223,13 +223,13 @@ enum { enum { /* 00 */ EXPLORE, /* AFL default, Exploration-based constant schedule */ - /* 01 */ FAST, /* Exponential schedule */ - /* 02 */ COE, /* Cut-Off Exponential schedule */ - /* 03 */ LIN, /* Linear schedule */ - /* 04 */ QUAD, /* Quadratic schedule */ - /* 05 */ EXPLOIT, /* AFL's exploitation-based const. */ - /* 06 */ MMOPT, /* Modified MOPT schedule */ - /* 07 */ RARE, /* Rare edges */ + /* 01 */ EXPLOIT, /* AFL's exploitation-based const. */ + /* 02 */ FAST, /* Exponential schedule */ + /* 03 */ COE, /* Cut-Off Exponential schedule */ + /* 04 */ LIN, /* Linear schedule */ + /* 05 */ QUAD, /* Quadratic schedule */ + /* 06 */ RARE, /* Rare edges */ + /* 07 */ MMOPT, /* Modified MOPT schedule */ POWER_SCHEDULES_NUM |