numenta/htmresearch

column_cooler.py

vincentliuk opened this issue · 2 comments

Line413
if len(remFFcells > discrepancy):

is this above correct?

might should be:
if len(remFFcells) > discrepancy

Good eye! I got lucky here. This statement always evaluates to True, and the True block actually does the right thing. I'll post a PR soon.