Graph: Changed methods for prob1 methods in performProb1Max / performProb1Min to more efficient variants that can be used as we already know the prob0 states.
// Instead of calling performProb1E, we call the (more easier) performProb0E on the Prob0A states.
// This is valid because, when maximizing probabilities, states that have prob1 cannot reach a state with prob 0 (and will eventually reach a psiState).
// States that do not have prob1 will eventually reach a state with prob0.
// Instead of calling performProb1A, we call the (more easier) performProb0A on the Prob0E states.
// This is valid because, when minimizing probabilities, states that have prob1 cannot reach a state with prob 0 (and will eventually reach a psiState).
// States that do not have prob1 will eventually reach a state with prob0.