Exemple #1
0
 public EAStatePair(EAState left, EAState right)
 {
     _left = left;
     _right = right;
 }
Exemple #2
0
 public EAStatePair(EAState left, EAState right)
 {
     _left  = left;
     _right = right;
 }
Exemple #3
0
 public bool Equals(EAState other)
 {
     return ModelState == other.ModelState && ActionState == other.ActionState;
 }
Exemple #4
0
 public bool Equals(EAState other)
 {
     return(ModelState == other.ModelState && ActionState == other.ActionState);
 }