private List<Cell<Double>> possibleOutcomes(Cell<Double> c, CS8803AGA.PsychSim.State.Action a)
        {
            List<Cell<Double>> outcomes = new List<Cell<Double>>();

            outcomes.Add(state.result(c, a));
            outcomes.Add(state.result(c, a.getFirstRightAngledAction()));
            outcomes.Add(state.result(c, a.getSecondRightAngledAction()));

            return outcomes;
        }