Exemplo n.º 1
0
        public Beam(TankOperation operation, Grid grid, SignalWeights weights)
        {
            StartAction = operation.GetAction();
            EvalState startingState = new EvalState(operation.GetAction(), grid);

            bestStates[0] = operation.GetScore(startingState, weights);
        }
Exemplo n.º 2
0
 public Beam(TankOperation operation, Grid grid, SignalWeights weights)
 {
     StartAction = operation.GetAction();
     EvalState startingState = new EvalState(operation.GetAction(), grid);
     bestStates[0] = operation.GetScore(startingState, weights);
 }