3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-20 08:24:50 +00:00

More PEP 8 fixes.

This commit is contained in:
Kaj Tuomi 2016-09-02 13:09:09 +03:00
parent c4ba1965fd
commit d88cd0ae7f
2 changed files with 6 additions and 7 deletions

View file

@ -419,7 +419,6 @@ def write_constr_trace(steps_start, steps_stop, index):
width = smt.modinfo[topmod].wsize[name]
primary_inputs.append((name, width))
if steps_start == 0:
print("initial", file=f)
else:
@ -450,7 +449,6 @@ def write_constr_trace(steps_start, steps_stop, index):
for i, val in zip(addr_list, smt.get_list(expr_list)):
print("assume (= (select [%s] #b%s) %s)" % (".".join(mempath), format(i, "0%db" % abits), val), file=f)
for k in range(steps_start, steps_stop):
print("", file=f)
print("state %d" % k, file=f)
@ -558,7 +556,7 @@ if tempind:
break
else: # not tempind
else: # not tempind
step = 0
retstatus = True
while step < num_steps:
@ -644,7 +642,7 @@ else: # not tempind
if not retstatus:
break
else: # gentrace
else: # gentrace
for i in range(step, last_check_step+1):
smt.write("(assert (%s_a s%d))" % (topmod, i))
smt.write("(assert %s)" % get_constr_expr(constr_asserts, i))
@ -671,4 +669,3 @@ smt.wait()
print("%s Status: %s" % (smt.timestamp(), "PASSED" if retstatus else "FAILED (!)"))
sys.exit(0 if retstatus else 1)