From a808de35cfc8591d0b9eb4396051916d0e8b41b9 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 17 Mar 2012 00:29:17 +0100 Subject: [PATCH] Increase the max number of iterations a bit. --- bayeswf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2