nickgillian / grt

gesture recognition toolkit
853 stars 286 forks source link

Some code confused #138

Open xfarmer opened 6 years ago

xfarmer commented 6 years ago

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.