From 0f7886fb88b7fd9710bc1c0c9f7271983a2fa78b Mon Sep 17 00:00:00 2001
From: Jonathan CROUZET <jonathan.crouzet@ensiie.fr>
Date: Wed, 19 Oct 2016 13:40:24 +0200
Subject: [PATCH] Set standard parameters

---
 src/ibea/ibea.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/ibea/ibea.cpp b/src/ibea/ibea.cpp
index d5a4ede..7790938 100644
--- a/src/ibea/ibea.cpp
+++ b/src/ibea/ibea.cpp
@@ -17,12 +17,12 @@ void ibea(evaluate_function_t evaluate,
           coco_random_state_t *random_generator)
 {
   /* Parameters */
-  int n_individus = 50; /* number of individus per generations */
+  int n_individus = 100; /* number of individus per generations */
   int n_generations = floor(max_budget/n_individus); /* number of generations */
   int mu = 20; /* number of binary tournament */
   double eta = 20; /* polynomiale mutation degree */
   double p_combination = 1;
-  double p_mutation = 0.1;
+  double p_mutation = 0.01;
   double kappa = 0.05;
 
   /* Initialize */
-- 
GitLab