Hotspots

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

Moderators: hgm, Rebel, chrisw

Lyudmil Tsvetkov
Posts: 6052
Joined: Tue Jun 12, 2012 12:41 pm

Re: A plea to someone

Post by Lyudmil Tsvetkov »

lantonov wrote:I'll do it with low priority to wait for an empty queue.
Many thanks, Lyudmil.

I know you are a great man. :)
User avatar
lantonov
Posts: 216
Joined: Sun Apr 13, 2014 5:19 pm

Re: A plea to someone

Post by lantonov »

Nothing compared to you, adash :oops:
Lyudmil Tsvetkov
Posts: 6052
Joined: Tue Jun 12, 2012 12:41 pm

Re: A plea to someone

Post by Lyudmil Tsvetkov »

lantonov wrote:Nothing compared to you, adash :oops:
Are you certain the patch is there?
I see commits with changed values, but it says zero changed files.

Man, 15 elo down the drain. :shock:
User avatar
lantonov
Posts: 216
Joined: Sun Apr 13, 2014 5:19 pm

Re: A plea to someone

Post by lantonov »

Lyudmil Tsvetkov wrote:
lantonov wrote:Nothing compared to you, adash :oops:
Are you certain the patch is there?
I see commits with changed values, but it says zero changed files.

Man, 15 elo down the drain. :shock:
Click on diff and then scroll down
User avatar
lantonov
Posts: 216
Joined: Sun Apr 13, 2014 5:19 pm

Re: A plea to someone

Post by lantonov »

This is the difference between master and patch:

Code: Select all

diff --git a/src/types.h b/src/types.h
index eebd69e..0a689ba 100644
--- a/src/types.h
+++ b/src/types.h
@@ -191,11 +191,11 @@ enum Value : int {
   VALUE_MATE_IN_MAX_PLY  =  VALUE_MATE - 2 * MAX_PLY,
   VALUE_MATED_IN_MAX_PLY = -VALUE_MATE + 2 * MAX_PLY,

-  PawnValueMg   = 198,   PawnValueEg   = 258,
-  KnightValueMg = 817,   KnightValueEg = 846,
-  BishopValueMg = 836,   BishopValueEg = 857,
-  RookValueMg   = 1270,  RookValueEg   = 1278,
-  QueenValueMg  = 2521,  QueenValueEg  = 2558,

+  PawnValueMg   = 194,   PawnValueEg   = 256,
+  KnightValueMg = 818,   KnightValueEg = 846,
+  BishopValueMg = 840,   BishopValueEg = 865,
+  RookValueMg   = 1278,  RookValueEg   = 1294,
+  QueenValueMg  = 2520,  QueenValueEg  = 2560,

   MidgameLimit  = 15581, EndgameLimit  = 3998
 };