/// <summary> /// Compares this Node to another virtual Variable node /// </summary> /// <param name="other">Other Variable Node</param> /// <returns></returns> public int CompareTo(SimpleVirtualVariableNode other) { return(CompareTo((IVariableNode)other)); }
/// <summary> /// Determines whether this Node is equal to another virtual variable node /// </summary> /// <param name="other">Other Variable Node</param> /// <returns></returns> public bool Equals(SimpleVirtualVariableNode other) { return(Equals((IVariableNode)other)); }