module AlgorithmInterface

Public Class Methods

new(params = {}) click to toggle source
Calls superclass method
# File lib/opt_alg_framework/algorithm/algorithm_interface.rb, line 6
def initialize(params = {})
  must_implement start: 0
  super(params)
end