Remove unneeded code from buildSrc.

This commit is contained in:
Peter Osterlund
2019-03-17 22:48:06 +01:00
parent 1a533ca1fb
commit de36444c9f
25 changed files with 610 additions and 4617 deletions

View File

@@ -100,8 +100,8 @@ public class Move {
return (from * 64 + to) * 16 + promoteTo;
}
/** Useful for debugging. */
public final String toString() {
return TextIO.moveToUCIString(this);
/** Get move as a 16-bit value. */
public int getCompressedMove() {
return (from * 64 + to) * 16 + promoteTo;
}
}