Skip to content

Commit

Permalink
cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
esohel30 committed Jul 28, 2024
1 parent da9fc95 commit 57b5aee
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions scripts/pysa_fuzzer/code_generator2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())

0 comments on commit 57b5aee

Please sign in to comment.