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
In order to fix these exceptions, a new evaluation feature called Activity needs to be implemented in the php-chess/src/Eval folder. The PHPUnit tests are to be written in the php-chess/tests/unit/Eval/ActivityEvalTest.php file accordingly.
The activity of a piece is the number of squares it can move to in the next turn — not to confuse with Space, the number of squares controlled by each player.
active: Describes a piece that threatens a number of squares, or that has a number of squares available for its next move. It may also describe an aggressive style of play.
The text was updated successfully, but these errors were encountered:
A few recently added tests are now refuting Blab's theorem of chess oscillations:
More specifically:
This is due to a lack of evaluation features that still need to be implemented.
In order to fix these exceptions, a new evaluation feature called Activity needs to be implemented in the
php-chess/src/Eval
folder. The PHPUnit tests are to be written in thephp-chess/tests/unit/Eval/ActivityEvalTest.php
file accordingly.The activity of a piece is the number of squares it can move to in the next turn — not to confuse with Space, the number of squares controlled by each player.
See:
The text was updated successfully, but these errors were encountered: