From 57b5aee0b27020a1451b7d7505fa6aaaad5728fb Mon Sep 17 00:00:00 2001 From: esohel30 Date: Sun, 28 Jul 2024 15:52:41 -0400 Subject: [PATCH] cleaning up --- scripts/pysa_fuzzer/code_generator2.py | 28 -------------------------- 1 file changed, 28 deletions(-) diff --git a/scripts/pysa_fuzzer/code_generator2.py b/scripts/pysa_fuzzer/code_generator2.py index 467bfe9b2b4..8490edd0b6e 100644 --- a/scripts/pysa_fuzzer/code_generator2.py +++ b/scripts/pysa_fuzzer/code_generator2.py @@ -505,31 +505,3 @@ def {function_1}(x): print(generator.generate()) - -def f0(x): - a = random.randint(1, 5) - if a < 5: - print(x) - else: - b = x - print(b) - - -def f1(x): - c = random.randint(1, 5) - if c < 5: - f0(x) - else: - d = x - f0(d) - - -def f2(x): - e = random.randint(1, 5) - if e < 5: - f1(x) - else: - f = x - f1(f) - -f2(input()) \ No newline at end of file