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

fix endless loop. Line changes still seem borked

parent 3d2733b1
No related branches found
No related tags found
1 merge request!1Transit algorithm implementation
......@@ -116,8 +116,8 @@ public:
*/
[[nodiscard]] bool strictlyDominates(const TransitAlgorithmState& rhs) const {
return this->_nodeIndex == rhs.getNodeIndex() //same current node
&& ((this->getInstant() < rhs.getInstant() && (this->getConnections().size() <= rhs.getConnections().size() || rhs.getConnections().empty()))
|| (this->getInstant() < rhs.getInstant() && this->getConnections().size() == rhs.getConnections().size()));
&& ((!this->getConnections().empty() && rhs.getConnections().empty())
|| (this->getInstant() <= rhs.getInstant() && this->getConnections().size() <= rhs.getConnections().size()));
}
/**
......
......@@ -8,6 +8,13 @@
#include <vector>
#include "TransitShortestPath.h"
#ifdef DEBUG_TRANSIT_PRECOMPUTE
#include <iostream>
#define DEBUG_MSG(str) do { std::cout << str << std::endl; } while( false )
#else
#define DEBUG_MSG(str) do { } while ( false )
#endif
class TransitStateContainer {
private:
// int x,delta;
......@@ -32,13 +39,19 @@ public:
bool tryAddNewState(int nodeIndex, const TransitAlgorithmState& newState)
{
if(newState.strictlyDominates(solutionVector.at(nodeIndex)[0])) {
DEBUG_MSG("Trying to add state " + newState.toString());
if(!solutionVector.at(nodeIndex).empty() && newState.strictlyDominates(solutionVector.at(nodeIndex)[0])) {
DEBUG_MSG("Added state to position 0, replacing " + solutionVector.at(nodeIndex)[0].toString());
solutionVector.at(nodeIndex)[0] = newState;
return true;
} else if(newState.strictlyDominates(solutionVector.at(nodeIndex)[1])) {
} else if(solutionVector.at(nodeIndex).size() > 1 && newState.strictlyDominates(solutionVector.at(nodeIndex)[1])) {
DEBUG_MSG("Added state to position 1, replacing " + solutionVector.at(nodeIndex)[1].toString());
solutionVector.at(nodeIndex)[1] = newState;
return true;
} else {
DEBUG_MSG("State wasn't added to the container because it doesn't dominate \n" +
solutionVector.at(nodeIndex)[0].toString() +
(solutionVector.at(nodeIndex).size() > 1 ? "\nor " + solutionVector.at(nodeIndex)[1].toString() : ""));
return false;
}
}
......
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