Advertisement
ijh

Ordo settings

ijh
Sep 16th, 2021
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. @ECHO off
  2.  
  3. rem
  4.  
  5. rem File kindly provided by Adam Hair (http://adamsccpages.blogspot.com/).
  6. rem
  7. rem This example runs ordo.exe -a (replace this with an Elo rating for the
  8. rem reference engine) -A"(enter name of reference engine)" -W -p (input PGN)
  9. rem -o rating.txt. If you want the ratings to be in a format that is easy to
  10. rem import to a spread sheet, use '-c' instead of '-o' and use a .csv file
  11. rem extension (instead of .txt). Changing the output file to rating.dat will
  12. rem make it compatible to Norm Pollock's embed.exe PGN utility. The following
  13. rem is an actual example of how to use Ordo with a batch file (a Windows file
  14. rem with a .bat extension that is used to send commands to programs). Make
  15. rem sure the batch file and Ordo are in the same folder as the input PGN (a
  16. rem PGN file of IPON results, named results.pgn, has been packaged with Ordo
  17. rem and this batch file).
  18.  
  19.  
  20. ordo-win64.exe -a 0 -A "engineNameGoesHere" -W -p games.pgn -o rating.txt -G
  21.  
  22. rem open results with notepad
  23.  
  24. notepad rating.txt
  25.  
  26. rem By double clicking on this batch file, you will cause Ordo to compute the
  27. rem ratings from the game results contained in results.pgn. A console window
  28. rem will appear (black screen, white text), and you will see Ordo's progress.
  29. rem The ratings will be outputted to a text file called rating.txt. Naum 4.2
  30. rem will be the reference engine, and its rating is set at 2834. The ratings
  31. rem of the other engines are relative to the rating assigned to Naum 4.2. Any
  32. rem engine in this or any other PGN can be used as the reference, and it can
  33. rem be assigned any numeric rating value. Additional information can be found
  34. rem in the readme.txt file that comes with Ordo.
  35. rem
  36. rem To create your own batch file, use a text editor such as NotePad,
  37. rem NotePad++, etc... Create a new file, type in the appropriate commands in
  38. rem the appropriate format (as seen above), choose save as (enter your file
  39. rem name).bat, and save type as 'All Files' or 'Batch' (depending on the text
  40. rem editor). One tip: To prevent the console window from automatically
  41. rem closing, type 'pause' on a second line. This can be useful if there is a
  42. rem problem with the batch file. It gives you a chance to see the error
  43. rem message.
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement