mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 10:54:51 +00:00
Data collection fixes
This commit is contained in:
@@ -88,11 +88,14 @@ public class AITest {
|
|||||||
match.init(players);
|
match.init(players);
|
||||||
while (!match.isTerminal()) {
|
while (!match.isTerminal()) {
|
||||||
final int currentAI = match.getCurrentTurn();
|
final int currentAI = match.getCurrentTurn();
|
||||||
|
|
||||||
final long startTime = System.nanoTime();
|
final long startTime = System.nanoTime();
|
||||||
final long move = players[currentAI].getMove(match);
|
final long move = players[currentAI].getMove(match);
|
||||||
final long endTime = System.nanoTime();
|
final long endTime = System.nanoTime();
|
||||||
|
|
||||||
if (players[currentAI].getAi() instanceof MCTSAI) {
|
if (players[currentAI].getAi() instanceof MCTSAI) {
|
||||||
final int lastIterations = ((MCTSAI) players[currentAI].getAi()).getLastIterations();
|
final int lastIterations = ((MCTSAI) players[currentAI].getAi()).getLastIterations();
|
||||||
|
|
||||||
if (currentAI == 0) {
|
if (currentAI == 0) {
|
||||||
iterationsAI1.add(lastIterations);
|
iterationsAI1.add(lastIterations);
|
||||||
millisecondscounterAI1 += (endTime - startTime);
|
millisecondscounterAI1 += (endTime - startTime);
|
||||||
|
|||||||
Reference in New Issue
Block a user