Skip to content

Commit

Permalink
Remove non ascii char from standard output (#373)
Browse files Browse the repository at this point in the history
Forgot about this one, so it kept breaking OB
  • Loading branch information
eduherminio committed Aug 22, 2023
1 parent e9673d8 commit 8743436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lynx/UCI/Commands/Engine/OptionCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public sealed class OptionCommand : EngineBaseCommand

public static readonly ImmutableArray<string> AvailableOptions = ImmutableArray.Create<string>(
"option name UCI_Opponent type string",
"option name UCI_EngineAbout type string default Lynx by Eduardo Cáceres, see https://github.com/lynx-chess/Lynx",
$"option name UCI_EngineAbout type string default {IdCommand.EngineName} by {IdCommand.Name}, see https://github.com/lynx-chess/Lynx",
$"option name Hash type spin default {Configuration.EngineSettings.TranspositionTableSize} min 0 max 1024",
"option name OnlineTablebaseInRootPositions type check default false",
"option name OnlineTablebaseInSearch type check default false",
Expand Down

1 comment on commit 8743436

@eduherminio
Copy link
Member Author

@eduherminio eduherminio commented on 8743436 Aug 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

120+1, hash 256, book 8moves_v3

Rank Name                          Elo     +/-   Games    Wins  Losses   Draws   Points   Score    Draw   White   Black
   0 Lynx 1338 - main               71      14    1937     925     535     477   1163.5   60.1%   24.6%   61.6%   58.5%
   1 Cadabra 2.0.0                  -6      41     216      80      84      52    106.0   49.1%   24.1%   50.9%   47.2%
   2 BBC 1.1                       -10      43     216      89      95      32    105.0   48.6%   14.8%   49.1%   48.1%
   3 Lynx 0.15.0                   -15      38     215      68      77      70    103.0   47.9%   32.6%   46.7%   49.1%
   4 Zeta Dva 0310                 -52      42     216      69     101      46     92.0   42.6%   21.3%   46.3%   38.9%
   5 AdaChess 3.6                  -67      36     216      43      84      89     87.5   40.5%   41.2%   42.6%   38.4%
   6 MinimalChess 0.4.1            -90      42     214      55     109      50     80.0   37.4%   23.4%   37.9%   36.9%
   7 BBC 1.0                      -108      41     216      45     110      61     75.5   35.0%   28.2%   40.3%   29.6%
   8 Rustic 3                     -140      45     214      45     127      42     66.0   30.8%   19.6%   29.0%   32.7%
   9 Rustic 2                     -170      47     214      41     138      35     58.5   27.3%   16.4%   30.4%   24.3%

120+1, hash 128, book 8moves_v3

Rank Name                          Elo     +/-   Games    Wins  Losses   Draws   Points   Score    Draw   White   Black
   0 Lynx 1338 - main               63      12    2321    1079     660     582   1370.0   59.0%   25.1%   60.7%   57.4%
   1 BBC 1.1                        15      38     258     106      95      57    134.5   52.1%   22.1%   49.2%   55.0%
   2 Zeta Dva 0310                  -8      38     258      98     104      56    126.0   48.8%   21.7%   48.4%   49.2%
   3 Lynx 0.15.0                   -23      34     258      72      89      97    120.5   46.7%   37.6%   46.1%   47.3%
   4 Cadabra 2.0.0                 -26      37     258      90     109      59    119.5   46.3%   22.9%   49.2%   43.4%
   5 AdaChess 3.6                  -65      31     258      45      93     120    105.0   40.7%   46.5%   43.0%   38.4%
   6 BBC 1.0                      -100      38     258      60     132      66     93.0   36.0%   25.6%   41.1%   31.0%
   7 Rustic 3                     -111      41     258      68     148      42     89.0   34.5%   16.3%   35.7%   33.3%
   8 MinimalChess 0.4.1           -121      39     257      58     144      55     85.5   33.3%   21.4%   36.3%   30.2%
   9 Rustic 2                     -145      43     258      63     165      30     78.0   30.2%   11.6%   34.5%   26.0%

ordo with both combined (using Lynx 0.15.0 estimated elo from 519d693#comments):

   # PLAYER                :  RATING  POINTS  PLAYED   (%)
   1 BBC 1.1               :  2132.0   239.5     474    51
   2 Cadabra 2.0.0         :  2072.0   225.5     474    48
   3 Lynx 1338 - main      :  2052.6  2533.5    4258    59
   4 Lynx 0.15.0           :  2039.0   223.5     473    47
   5 BBC 1.0               :  1986.0   168.5     474    36
   6 AdaChess 3.6          :  1985.0   192.5     474    41
   7 MinimalChess 0.4.1    :  1927.0   165.5     471    35
   8 Zeta Dva 0310         :  1926.0   218.0     474    46
   9 Rustic 3              :  1905.0   155.0     472    33
  10 Rustic 2              :  1852.0   136.5     472    29

White advantage = 12.33
Draw rate (equal opponents) = 50.00 %

Estimation: 2039 -> 2052.6

Please sign in to comment.