From 9f8edf223b7aaa3ce0e333a114248783190b4558 Mon Sep 17 00:00:00 2001 From: ehuang32 <ericchristopherwong@gmail.com> Date: Fri, 23 Oct 2020 11:35:18 +1100 Subject: [PATCH] MAX_STACK=3 --- fuzzer/Fuzzer.java | 2 +- runCount.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzzer/Fuzzer.java b/fuzzer/Fuzzer.java index 8b91a1a..d52d65d 100644 --- a/fuzzer/Fuzzer.java +++ b/fuzzer/Fuzzer.java @@ -52,7 +52,7 @@ public class Fuzzer { // Current stack of instructions private static ArrayList<Instruction> instructionStack = new ArrayList<Instruction>(); // Max stack of instructions before resetting stack - private static final int MAX_STACK = 2; + private static final int MAX_STACK = 3; public static void main(String[] args) throws IOException { System.out.println(Instruction.getBNF()); diff --git a/runCount.txt b/runCount.txt index c227083..56a6051 100644 --- a/runCount.txt +++ b/runCount.txt @@ -1 +1 @@ -0 \ No newline at end of file +1 \ No newline at end of file -- GitLab