class Kodo::Algorithms::Base

Constants

DEFAULT_SEED_LIBRARY

Attributes

count[RW]
max_length[RW]
name[RW]
seed[RW]

Public Class Methods

new(count, max_length) click to toggle source
# File lib/kodo/algorithms/base.rb, line 8
def initialize(count, max_length)
  self.count = count
  self.max_length = max_length
end