Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. List<EvolutionaryOperator<String>> operators
  2.         = new LinkedList<EvolutionaryOperator<String>>();
  3.     operators.add(new StringMutation(chars, new Probability(0.02)));
  4.     operators.add(new StringCrossover());
  5.     EvolutionaryOperator<String> pipeline
  6.         = new EvolutionPipeline<String>(operators);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement