nickgillian / grt

gesture recognition toolkit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some code confused

xfarmer opened this issue · comments

In source file:
https://github.com/nickgillian/grt/blob/master/GRT/ClusteringModules/SelfOrganizingMap/SelfOrganizingMap.cpp

Line 249, those code:

        //Check to see if we should stop
        if( delta <= minChange && false ){
            converged = true;
            keepTraining = false;
        }

looks like will never execute.