1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-29 17:00:07 -09:00

Added MCTS AI for

This commit is contained in:
Oleg Agafonov 2019-12-23 23:35:19 +04:00
parent 82371456cd
commit 98cbf42a11
3 changed files with 12 additions and 4 deletions
Mage.Server.Plugins/Mage.Player.AIMCTS
Mage.Server

View file

@ -25,6 +25,11 @@
<artifactId>mage</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mage-sets</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mage-player-ai</artifactId>
@ -33,7 +38,6 @@
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@ -49,10 +53,9 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<finalName>mage-player-aimcts</finalName>
<finalName>mage-player-ai-mcts</finalName>
</build>
<properties/>

View file

@ -1,4 +1,3 @@
package mage.player.ai;
import mage.constants.PhaseStep;

View file

@ -136,6 +136,12 @@
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mage-player-ai-mcts</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mage-tournament-boosterdraft</artifactId>