about summary refs log tree commit diff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-06-15 20:02:28 +0200
committervan Hauser <vh@thc.org>2020-06-15 20:02:28 +0200
commitada59feda852a13207818f8202dabe517b721b35 (patch)
tree5a2ad980bad59ba2ac1790bef660fa235c4f1f36 /include/afl-fuzz.h
parentaf8d4d49ede0e4b3baab98f9b17505646859832a (diff)
downloadafl++-ada59feda852a13207818f8202dabe517b721b35.tar.gz
improve performance for default power schedule
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r--include/afl-fuzz.h14
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