
com.fathzer.chess.utils.test.helper.perft.Divide Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chess-test-utils Show documentation
Show all versions of chess-test-utils Show documentation
Some JUnit abstract test classes to test chess related libraries.
The newest version!
package com.fathzer.chess.utils.test.helper.perft;
/** A perft divide result for a specific move.
* @param the type of the move
* @param move the move
* @param count the number of leaves for this move
*/
public record Divide(M move, long count) {
@Override
public String toString() {
return move.toString()+": "+count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy