Skip to content
Snippets Groups Projects
Commit 8abc5ecb authored by Romain BERNARD's avatar Romain BERNARD
Browse files

add transit state comparator

parent 8388f5a5
No related branches found
No related tags found
1 merge request!1Transit algorithm implementation
......@@ -139,6 +139,18 @@ public:
&& this->getConnections().size() > rhs.getConnections().size()));
}
bool operator==(const TransitAlgorithmState& rhs) const {
return this->_nodeIndex == rhs.getNodeIndex() //same current node
&& this->getInstant() == rhs.getInstant()
&& this->getConnections().size() == rhs.getConnections().size();
}
bool operator!=(const TransitAlgorithmState& rhs) const {
return this->_nodeIndex != rhs.getNodeIndex() //same current node
|| this->getInstant() != rhs.getInstant()
|| this->getConnections().size() != rhs.getConnections().size();
}
TransitAlgorithmState& operator=(const TransitAlgorithmState& baseState) {
_nodeIndex = baseState.getNodeIndex();
_instant = baseState.getInstant();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment