All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fathzer.chess.utils.test.helper.perft.Divide Maven / Gradle / Ivy

There is a newer version: 0.0.2
Show 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