From: Steinar H. Gunderson Date: Fri, 16 Mar 2012 23:29:17 +0000 (+0100) Subject: Increase the max number of iterations a bit. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a808de35cfc8591d0b9eb4396051916d0e8b41b9;p=wloh Increase the max number of iterations a bit. --- diff --git a/bayeswf.cpp b/bayeswf.cpp index 8c6f3b0..7549553 100644 --- a/bayeswf.cpp +++ b/bayeswf.cpp @@ -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);