Skip to content
Snippets Groups Projects
Commit 80b7aed4 authored by a.croix's avatar a.croix
Browse files

Fix some style

parent 91337502
No related branches found
No related tags found
No related merge requests found
Pipeline #1021 failed
...@@ -9,9 +9,12 @@ public class TrainerParameters { ...@@ -9,9 +9,12 @@ public class TrainerParameters {
/** /**
* Constant for choosing the selection method. * Constant for choosing the selection method.
* SELECTION_METHODRWS for the roulette wheel selection method * SELECTION_METHODRWS for the roulette wheel selection method
* SELECTION_METHOD_TOS for the tournament selection
*/ */
public static final int SELECTION_METHOD_RWS = 374; public static final int SELECTION_METHOD_RWS = 374;
/**
* Constant for choosing selection method.
* SELECTION_METHOD_TOS for the tournament selection
*/
public static final int SELECTION_METHOD_TOS = 942; public static final int SELECTION_METHOD_TOS = 942;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment