class MetaheuristicAlgorithms::AntColonyOptimization

Public Class Methods

new(function_wrapper, number_of_variables: 1, objective: :maximization) click to toggle source
# File lib/metaheuristic_algorithms/ant_colony_optimization.rb, line 6
def initialize(function_wrapper, number_of_variables: 1, objective: :maximization)
  @function_wrapper = function_wrapper



end

Public Instance Methods