示例#1
0
 public AI(GameState state, PlayerId pId, Heuristic heuristic)
 {
     this.pId = pId;
     this.forwardModel = new ForwardModel(state);
     this.heuristic = heuristic;
 }
示例#2
0
 public abstract List<Input> nextInputList(GameState state, PlayerId pId, Heuristic heuristic);
示例#3
0
 public override List<Input> nextInputList(GameState state, PlayerId pId, Heuristic heuristic)
 {
     return new List<Input>() { new Input () };
 }