ELO rating calculator (not chess!)

Discussion of anything and everything relating to chess playing software and machines.

Moderators: hgm, Rebel, chrisw

playjunior
Posts: 338
Joined: Fri Jun 22, 2007 12:53 am

ELO rating calculator (not chess!)

Post by playjunior »

There is a game I want to create a tournament director for.
Does anyone know a software which would produce ELO ratings
like BayesElo? The reason I'm reluctant to use BayesELO is:

1. BayesELO usues pgn files
2. BayesELO distinguishes between black/white which is not present in the game I am interested in.

Any ideas?
rbarreira
Posts: 900
Joined: Tue Apr 27, 2010 3:48 pm

Re: ELO rating calculator (not chess!)

Post by rbarreira »

Isn't there a command in BayesElo to disable the white/black advantage thing?
User avatar
hgm
Posts: 27825
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: ELO rating calculator (not chess!)

Post by hgm »

Just set the 'advantage' to zero in the elo interface.

The only thing BayesElo uses from the PGN are the player and result tag, and a PNG result to recognize where the game ends (any result will do). I once made a synthetically generated PGN file with a random generator to test BayesElo, using a format like below, and it worked fine.

Code: Select all

[White "Player0"]
[Black "Player1"]
[Result "0-1"]
1. 1/2-1/2 {draw agreed}
[White "Player0"]
[Black "Player2"]
[Result "1-0"]
1. 1/2-1/2 {draw agreed}
[White "Player0"]
[Black "Player3"]
[Result "0-1"]
1. 1/2-1/2 {draw agreed}
[White "Player0"]
[Black "Player4"]
[Result "1-0"]
...
playjunior
Posts: 338
Joined: Fri Jun 22, 2007 12:53 am

Re: ELO rating calculator (not chess!)

Post by playjunior »

Thanks, this would do just fine.