Home
last modified time | relevance | path

Searched refs:hashMove (Results 1 – 1 of 1) sorted by relevance

/plugin/pgn4web/pgn4web/libs/garbochess/
Dgarbochess.js628 function IsHashMoveValid(hashMove) { argument
629 var from = hashMove & 0xFF;
630 var to = (hashMove >> 8) & 0xFF;
641 if (hashMove & moveflagEPC) {
654 (row == 0x20 && g_toMove)) != (hashMove & moveflagPromotion)) {
682 if (hashMove >> 16) return false;
697 function MovePicker(hashMove, depth, killer1, killer2) { argument
698 this.hashMove = hashMove;
714 if (this.hashMove != null && IsHashMoveValid(hashMove)) {
715 this.moves[0] = hashMove;
[all …]