Beispiel #1
0
 public AssossiativeSet<Agent> GetTagedAgentOfTransitionBetween(ActionState a, ActionState b)
 {
     ActionIndecisionPair key = new ActionIndecisionPair(a, b);
     key = TransitionRelation.Find(x => x.Equals(key));
     if (key == null) return null;
     return key.TagedAgents;
 }
Beispiel #2
0
 public EAState(EpisState modelState, ActionState actionState)
 {
     ModelState = modelState;
     ActionState = actionState;
 }
Beispiel #3
0
        public AssossiativeSet <Agent> GetTagedAgentOfTransitionBetween(ActionState a, ActionState b)
        {
            ActionIndecisionPair key = new ActionIndecisionPair(a, b);

            key = TransitionRelation.Find(x => x.Equals(key));
            if (key == null)
            {
                return(null);
            }
            return(key.TagedAgents);
        }