Ejemplo n.º 1
0
 public Cell<Double> getNextState(CS8803AGA.PsychSim.State.Action a, Cell<Double> c)
 {
     int x = a.getXResult(c.getX());
     int y = a.getYResult(c.getY());
     return this.mdp.S.cellLookup[x][y];
 }