AI: removed outdated AIMinimax project (#7075), removed some useless player classes, code and config files, improved docs;

This commit is contained in:
Oleg Agafonov 2024-01-15 03:14:42 +04:00
parent 6ac2f44cc1
commit 08b99fcbf7
40 changed files with 103 additions and 2462 deletions

View file

@ -35,7 +35,10 @@ import java.util.UUID;
import static com.google.common.collect.Iterables.getOnlyElement;
public class StubPlayer extends PlayerImpl implements Player {
/**
* Empty player, do nothing, used for tests only
*/
public class StubPlayer extends PlayerImpl {
@Override
public boolean choose(Outcome outcome, Target target, Ability source, Game game) {
@ -209,7 +212,7 @@ public class StubPlayer extends PlayerImpl implements Player {
@Override
public List<Integer> getMultiAmountWithIndividualConstraints(Outcome outcome, List<MultiAmountMessage> messages,
int min, int max, MultiAmountType type, Game game) {
int min, int max, MultiAmountType type, Game game) {
return null;
}
@ -227,10 +230,10 @@ public class StubPlayer extends PlayerImpl implements Player {
public void pickCard(List<Card> cards, Deck deck, Draft draft) {
}
@Override
public void addPhyrexianToColors(FilterMana colors) {
}
@Override