Browse Source

Whoops, got the slicing wrong.

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
17eee28a4b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/wiki/copyvios/markov.py

+ 1
- 1
earwigbot/wiki/copyvios/markov.py View File

@@ -40,7 +40,7 @@ class MarkovChain(object):
words = ([self.START] * padding) + words + ([self.END] * padding)
for i in range(len(words) - self.degree + 1):
last = i + self.degree - 1
self.chain[words[i:last]][last] += 1
self.chain[words[i:last]][words[last]] += 1

def __repr__(self):
"""Return the canonical string representation of the MarkovChain."""


Loading…
Cancel
Save