com.fluxchess.flux.SearchStackEntry Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2007-2014 the original author or authors.
*
* This file is part of Flux Chess.
*
* Flux Chess is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Flux Chess is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Flux Chess. If not, see .
*/
package com.fluxchess.flux;
public final class SearchStackEntry {
public int totalNodes;
public SearchStackEntry() {
clear();
}
public void clear() {
this.totalNodes = 0;
}
}