Skip to content

Commit f62d06d

Browse files
TRUONG3ldko
andauthored
Update the codes of readings_01, _02, _03 in the .zip (#946)
* Update the codes of readings_01, _02, _03 in the .zip * Recreate zip file with `make zip` * Fix integer division to close #948 * Rezip code files after integer division fix Co-authored-by: Lauren Ko <[email protected]>
1 parent 11643f1 commit f62d06d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

code/gen_inflammation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
vals = []
1717
for d in range(n_days):
1818
upper = max(n_range - abs(d - middle), 0)
19-
vals.append(random.randint(upper/4, upper))
19+
vals.append(random.randint(upper//4, upper))
2020
print(','.join([str(v) for v in vals]))
52 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)