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

fix state domination rules (might be able to optimize, see TODO)

parent 7c76a64a
No related branches found
No related tags found
1 merge request!1Transit algorithm implementation
......@@ -159,8 +159,11 @@ public:
* @return
*/
[[nodiscard]] bool strictlyDominates(const TransitAlgorithmState& rhs) const {
return (this->getInstant() < rhs.getInstant() && this->getConnections().size() <= rhs.getConnections().size())
|| (this->getInstant() == rhs.getInstant() && this->getConnections().size() < rhs.getConnections().size());
return this->getNodeIndex() == rhs.getNodeIndex()
&& this->getLastConnectionLine() == rhs.getLastConnectionLine()
// /*TODO : check */ && (this->getLastConnectionLine() == rhs.getLastConnectionLine() || this->getNbConnections() == 2) /***/
&& ((this->getInstant() < rhs.getInstant() && this->getConnections().size() <= rhs.getConnections().size())
|| (this->getInstant() == rhs.getInstant() && this->getConnections().size() < rhs.getConnections().size()));
}
/**
......
......@@ -65,8 +65,8 @@ TransitStateContainer TransitShortestPathPrecompute::executeAlgorithm(const Grap
//Add new state to the solution container and the priority queue if it's not strictly dominated by an existing solution
if(newState.getNodeIndex() != -1 && !solutionsContainer.strictlyDominates(newState)) {
DEBUG_MSG("Candidate state " + newState.toString() + " is being added to solution container and priority queue\n");
solutionsContainer.addNewState(nextNode, newState);
DEBUG_MSG("Candidate state " + newState.toString() + " added to priority queue\n");
solutionsContainer.replaceBestSolutionIfNecessary(nextNode, newState);
statePriorityQueue.emplace(newState);
}
}
......
......@@ -63,10 +63,14 @@ public:
void resizeSolutionsVector(int nbNodes){ solutionVector.resize(nbNodes);}
void addNewState(int nodeIndex, const TransitAlgorithmState& newState)
void replaceBestSolutionIfNecessary(int nodeIndex, const TransitAlgorithmState& newState)
{
if(newState.getNbConnections() > 0) {
solutionVector.at(nodeIndex).at(newState.getNbConnections() - 1) = newState;
TransitAlgorithmState& currentBest = solutionVector.at(nodeIndex).at(newState.getNbConnections() - 1);
if(currentBest.getInstant() > newState.getInstant()) {
DEBUG_MSG("Candidate state " + newState.toString() + " is the new fastest solution");
solutionVector.at(nodeIndex).at(newState.getNbConnections() - 1) = newState;
}
}
}
......
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