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

com.fathzer.chess.utils.evaluators.pesto.PestoState Maven / Gradle / Ivy

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

/** The state of a simplified evaluator.
 */
public class PestoState {
	int mgPoints;
	int egPoints;
	int phasePoints;
	
	
	PestoState() {
		super();
	}
	
	void copyTo(PestoState other) {
		other.mgPoints = mgPoints;
		other.egPoints = egPoints;
		other.phasePoints = phasePoints;
	}
	
	void clear() {
		mgPoints = 0;
		egPoints = 0;
		phasePoints = 0;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy