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

com.fathzer.chess.utils.evaluators.simplified.SimplifiedState Maven / Gradle / Ivy

The newest version!
package com.fathzer.chess.utils.evaluators.simplified;

/** The state of a simplified evaluator.
 */
public class SimplifiedState extends FastPhaseDetector {
	int points;
	int whiteKingIndex;
	int blackKingIndex;
	
	SimplifiedState() {
		super();
	}
	
	void copyTo(SimplifiedState other) {
		super.copyTo(other);
		other.points = points;
		other.blackKingIndex = blackKingIndex;
		other.whiteKingIndex = whiteKingIndex;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy