Skip to content
Snippets Groups Projects
Commit 1ec7fac0 authored by Erin (Josh) Rigler's avatar Erin (Josh) Rigler
Browse files

FFS Travis-CI, get over your whitespace issues

parent c2ab0146
No related branches found
No related tags found
No related merge requests found
......@@ -463,7 +463,7 @@ class SqDistAlgorithm(Algorithm):
# s[i + m] = s[i] + gamma * (1 - alpha) * et
# distribute error correction across range of seasonal
# corrections according to weights calculated above
# corrections according to weights calculated above
s[i + m] = s[i] + gamma * (1 - alpha) * et * weights[nts / 2]
s[i + m - nts / 2:i + m] = (s[i + m - nts / 2:i + m] +
gamma * (1 - alpha) * et *
......@@ -471,7 +471,7 @@ class SqDistAlgorithm(Algorithm):
s[i + 1:i + nts / 2 + 1] = (s[i + 1:i + nts / 2 + 1] +
gamma * (1 - alpha) * et *
weights[nts / 2 + 1:])
# update l and b using equation-error formulation
l = l + phi * b + alpha * et
b = phi * b + alpha * beta * et
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment