about summary refs log tree commit diff
path: root/src/afl-fuzz-state.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-06-25 10:33:59 +0200
committervan Hauser <vh@thc.org>2020-06-25 10:33:59 +0200
commitb5573b3adbe01681156598ce064c228c0140f782 (patch)
tree25a29e5aed99cad5ecb33ab7dbf1578da9d9c604 /src/afl-fuzz-state.c
parent15dd4ad177b4822ad25eaec26897bb55e5cd5785 (diff)
downloadafl++-b5573b3adbe01681156598ce064c228c0140f782.tar.gz
add seek power schedule, remove update stats in calibration, fix help output
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r--src/afl-fuzz-state.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c
index 814c2ca2..ece2d170 100644
--- a/src/afl-fuzz-state.c
+++ b/src/afl-fuzz-state.c
@@ -30,9 +30,9 @@ s8  interesting_8[] = {INTERESTING_8};
 s16 interesting_16[] = {INTERESTING_8, INTERESTING_16};
 s32 interesting_32[] = {INTERESTING_8, INTERESTING_16, INTERESTING_32};
 
-char *power_names[POWER_SCHEDULES_NUM] = {
-
-    "explore", "exploit", "fast", "coe", "lin", "quad", "rare", "mmopt"};
+char *power_names[POWER_SCHEDULES_NUM] = {"explore", "exploit", "fast",
+                                          "coe",     "lin",     "quad",
+                                          "rare",    "mmopt",   "seek"};
 
 /* Initialize MOpt "globals" for this afl state */