From d9954de145ee8245d8af90f9c5215c6eade92fec Mon Sep 17 00:00:00 2001
From: Ewen Smith <ewens@student.unimelb.edu.au>
Date: Thu, 22 Oct 2020 14:22:53 +1100
Subject: [PATCH] instructions 200 -> 500

---
 fuzzer/Fuzzer.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fuzzer/Fuzzer.java b/fuzzer/Fuzzer.java
index 6df465f..fac2b6a 100644
--- a/fuzzer/Fuzzer.java
+++ b/fuzzer/Fuzzer.java
@@ -9,7 +9,7 @@ import java.util.Random;
 
 /* a stub for your team's fuzzer */
 public class Fuzzer {
-    // Blah - 3rd Test
+    // Blah - Test 1
 
     private static final String OUTPUT_FILE = "fuzz.txt";
     
@@ -23,7 +23,7 @@ public class Fuzzer {
     private static final int NUMBER_TO_GENERATE = 10;
     // Instruction number range for each input
     private static final int INSTRUCTION_MIN = 0;
-    private static final int INSTRUCTION_MAX = 200;
+    private static final int INSTRUCTION_MAX = 500;
     // Maximum variable name length
     private static final int VAR_NAME_LENGTH_MAX = 100;
     private static final int VAR_ASCII_MIN = 33;
-- 
GitLab