Module: Dither::Aetg

Included in:
Pairwise
Defined in:
lib/dither/aetg.rb,
lib/dither/aetg_pairwise.rb

Defined Under Namespace

Classes: Pairwise

Instance Method Summary collapse

Instance Method Details

#runObject



5
6
7
8
9
10
11
12
13
# File 'lib/dither/aetg.rb', line 5

def run
  result = []
  until stop?
    generate
    filter
    result << best_fit
  end
  result
end