SpiecsEngine
 
Loading...
Searching...
No Matches

◆ operator==()

bool Spices::Edge::operator== ( const Edge & other) const
inline

Destructor Function. @attemtion Why Destructor causes bug here.

Todo
fix it.

Assignment Operation.

Parameters
[in]otherAnother Edge.
Returns
Returns true if equal.

Definition at line 117 of file Vertex.h.

117 {
118 return (first == other.first && second == other.second) ||
119 (first == other.second && second == other.first);
120 }