Skip to content
Extraits de code Groupes Projets
Valider 0f7886fb rédigé par Jonathan CROUZET's avatar Jonathan CROUZET
Parcourir les fichiers

Set standard parameters

parent a3f7c7d0
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -17,12 +17,12 @@ void ibea(evaluate_function_t evaluate, ...@@ -17,12 +17,12 @@ void ibea(evaluate_function_t evaluate,
coco_random_state_t *random_generator) coco_random_state_t *random_generator)
{ {
/* Parameters */ /* 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 n_generations = floor(max_budget/n_individus); /* number of generations */
int mu = 20; /* number of binary tournament */ int mu = 20; /* number of binary tournament */
double eta = 20; /* polynomiale mutation degree */ double eta = 20; /* polynomiale mutation degree */
double p_combination = 1; double p_combination = 1;
double p_mutation = 0.1; double p_mutation = 0.01;
double kappa = 0.05; double kappa = 0.05;
/* Initialize */ /* Initialize */
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter