]> git.sesse.net Git - wloh/commitdiff
Increase the max number of iterations a bit.
authorSteinar H. Gunderson <Steinar H. Gunderson sesse@debian.org>
Fri, 16 Mar 2012 23:29:17 +0000 (00:29 +0100)
committerSteinar H. Gunderson <Steinar H. Gunderson sesse@debian.org>
Fri, 16 Mar 2012 23:29:17 +0000 (00:29 +0100)
bayeswf.cpp

index 8c6f3b061f23da7bf74e0f1768d7a070d54ba01a..754955365ac619b6531795be5743e704611df766 100644 (file)
@@ -234,7 +234,7 @@ int main(int argc, char **argv)
        }
        renormalize(mu, sigma, num_players);
 
-       for (int j = 0; j < 100; ++j) {
+       for (int j = 0; j < 1000; ++j) {
                float old_mu[MAX_PLAYERS];
                float old_sigma[MAX_PLAYERS];
                memcpy(old_mu, mu, sizeof(float) * MAX_PLAYERS);