Exemplo n.º 1
0
        protected override bool EqualBody(Cell other)
        {
            var state = (StatePCPseudoCell)other;

            return(StateId.Equals(state.StateId));
        }
Exemplo n.º 2
0
 public bool Equals(Variable other)
 {
     return(Id.Equals(other.Id) && ArgLocal == other.ArgLocal && IsInit == other.IsInit && IsReadOnly == other.IsReadOnly && Type.Equals(other.Type));
 }
Exemplo n.º 3
0
        protected override bool EqualBody(Cell other)
        {
            var temp = (VariableCell)other;

            return(Id.Equals(temp.Id));
        }