Skip to content
Snippets Groups Projects
Commit 90a48726 authored by Hans-Peter Deifel's avatar Hans-Peter Deifel
Browse files

wta: Mark variable as global before assigning

parent 6286f6e3
Branches
No related tags found
No related merge requests found
...@@ -234,6 +234,7 @@ def find_bad(args, good): ...@@ -234,6 +234,7 @@ def find_bad(args, good):
def bisect_states(args): def bisect_states(args):
check_zerotrans(args) check_zerotrans(args)
global samples
samples = 1 samples = 1
states = args.start_states states = args.start_states
...@@ -292,6 +293,7 @@ def bisect_trans(args): ...@@ -292,6 +293,7 @@ def bisect_trans(args):
transitions = args.start_transitions transitions = args.start_transitions
global samples
samples = 1 samples = 1
good = args.good or 0 good = args.good or 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment