You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the description score should be 2 bytes and result should be 1, but looking at the code, it seems like they are both 4 Bytes, because they are defined as int:
typedefstruct {
Positionpos;
intscore; // score returned by the engine (in cp)intresult; // game result from pos.turn's pov
} Sample;
According to the description
score
should be 2 bytes andresult
should be 1, but looking at the code, it seems like they are both 4 Bytes, because they are defined asint
:and written with they actual size:
The text was updated successfully, but these errors were encountered: