public bool Equals_without_orientation(edge_store other) { if ((other.Equals(this) == true) || (other.Equals(this.sym) == true)) { return(true); } return(false); }
public bool equal_edge(edge_store other_e) { if (other_e.Equals(this.e1) == true || other_e.Equals(this.e2) == true || other_e.Equals(this.e3) == true) { return(true); } else { return(false); } }