Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #74 from mrcslws/grid-uniqueness-hypercubes
Browse files Browse the repository at this point in the history
Fix new typo/bug
  • Loading branch information
mrcslws authored Jan 16, 2019
2 parents 518eca4 + 1b0c55b commit 0e15d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nupic/experimental/GridUniqueness.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class LatticePointEnumerator
{
bool foundContainedPoint = false;

while (!foundContainedPoint && (!sweepingLeft_ || i_ <= iMax_))
while (!foundContainedPoint && (sweepingLeft_ || i_ <= iMax_))
{
const pair<double, double> p = transform2D(latticeBasis_, {i_, j_});

Expand Down

0 comments on commit 0e15d3f

Please sign in to comment.