module Algorithms::GeneticAlgorithm
Public Class Methods
init(population)
click to toggle source
population = list of solutions
# File lib/algorithms/genetic_algorithm/genetic_algorithm.rb, line 17 def self.init(population) Engine.new(population) end