Skip to content

Commit

Permalink
Adjust weights
Browse files Browse the repository at this point in the history
  • Loading branch information
ujh committed Feb 19, 2025
1 parent ef799e2 commit 621f367
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ruby/run_generation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,10 @@ def clean_up_generation(g)
end
end

AMIGO = { 'name' => 'AmiGo', 'command' => 'amigogtp', 'points' => 4 }
BROWN = { 'name' => 'Brown', 'command' => 'brown', 'points' => 2 }
GNUGO0 = { 'name' => 'GnuGoLevel0', 'command' => 'gnugo --level 0 --mode gtp', 'points' => 10 }
GNUGO10 = { 'name' => 'GnuGoLevel10', 'command' => 'gnugo --level 10 --mode gtp', 'points' => 20 }
AMIGO = { 'name' => 'AmiGo', 'command' => 'amigogtp', 'points' => 10 }
BROWN = { 'name' => 'Brown', 'command' => 'brown', 'points' => 1 }
GNUGO0 = { 'name' => 'GnuGoLevel0', 'command' => 'gnugo --level 0 --mode gtp', 'points' => 50 }
GNUGO10 = { 'name' => 'GnuGoLevel10', 'command' => 'gnugo --level 10 --mode gtp', 'points' => 100 }
EXTERNAL_PLAYERS = [
*(1..5).map { |i| BROWN.merge('name' => BROWN['name'] + i.to_s) },
*(1..10).map { |i| AMIGO.merge('name' => AMIGO['name'] + i.to_s) },
Expand Down

0 comments on commit 621f367

Please sign in to comment.