
com.fathzer.chess.utils.evaluators.pesto.PestoState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chess-utils Show documentation
Show all versions of chess-utils Show documentation
Some helpful piece of code to implement chess engines.
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