Skip to content

Commit f126178

Browse files
author
cuttlefisch
committed
remove old debug output
1 parent 7184d55 commit f126178

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

solid/splines.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -602,9 +602,6 @@ def thomas(A: Sequence, B: Sequence, C: Sequence, D: Sequence) -> Sequence:
602602
# Work back to front, solving for x[i] using x[-1]
603603
for i in range(n - 1, -1, -1):
604604
X.append(d_prime[i] - c_prime[i] * X[-1])
605-
# if DEBUG:
606-
# return [X[::-1], c_prime, d_prime]
607-
# else:
608605
return X[::-1]
609606

610607

0 commit comments

Comments
 (0)