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

[IMPORT BREAKING CHANGE] allow setting min TW in imports

parent a8403e4c
No related branches found
No related tags found
1 merge request!2Route manipulation API with automatic constraint propagation
......@@ -28,34 +28,36 @@ Request::Request(const DATRow& currentRow, const Graph& graph) {
std::from_chars(currentRow[1].data(), currentRow[1].data() + currentRow[1].size(), _destinationNodeIndex);
int twMin, twMax;
std::from_chars(currentRow[2].data(), currentRow[2].data() + currentRow[2].size(), twMin);
std::from_chars(currentRow[3].data(), currentRow[3].data() + currentRow[3].size(), twMax);
_arrivalTW = TimeWindow(twMin, twMax);
bool setDepartureTW{false};
bool setArrivalTW{false};
if(!currentRow[2].empty() && !currentRow[3].empty()) { //Departure TW
std::from_chars(currentRow[2].data(), currentRow[2].data() + currentRow[2].size(), twMin);
std::from_chars(currentRow[3].data(), currentRow[3].data() + currentRow[3].size(), twMax);
_departureTW = TimeWindow(twMin, twMax);
setDepartureTW = true;
}
if(!currentRow[4].empty() && !currentRow[5].empty()) { //Arrival TW
std::from_chars(currentRow[4].data(), currentRow[4].data() + currentRow[4].size(), twMin);
std::from_chars(currentRow[5].data(), currentRow[5].data() + currentRow[5].size(), twMax);
_arrivalTW = TimeWindow(twMin, twMax);
setArrivalTW = true;
}
std::from_chars(currentRow[4].data(), currentRow[4].data() + currentRow[4].size(), _deltaTime);
std::from_chars(currentRow[5].data(), currentRow[5].data() + currentRow[5].size(), _weight);
std::from_chars(currentRow[6].data(), currentRow[6].data() + currentRow[6].size(), _deltaTime);
std::from_chars(currentRow[7].data(), currentRow[7].data() + currentRow[7].size(), _weight);
_departureTW.min = _arrivalTW.min - _deltaTime;
_departureTW.max = _arrivalTW.max - graph.getShortestSAEVPath(_originNodeIndex, _destinationNodeIndex);
if(!setDepartureTW) {
_departureTW.min = _arrivalTW.min - _deltaTime;
_departureTW.max = _arrivalTW.max - graph.getShortestSAEVPath(_originNodeIndex, _destinationNodeIndex);
}
if(!setArrivalTW) {
_arrivalTW.min = _departureTW.min + graph.getShortestSAEVPath(_originNodeIndex, _destinationNodeIndex);
_arrivalTW.max = _departureTW.max + _deltaTime;
}
}
Request::Request(const DATRow& currentRow, double deltaRatio, const Graph& graph) {
std::from_chars(currentRow[0].data(), currentRow[0].data() + currentRow[0].size(), _originNodeIndex);
std::from_chars(currentRow[1].data(), currentRow[1].data() + currentRow[1].size(), _destinationNodeIndex);
int twMin, twMax;
std::from_chars(currentRow[2].data(), currentRow[2].data() + currentRow[2].size(), twMin);
std::from_chars(currentRow[3].data(), currentRow[3].data() + currentRow[3].size(), twMax);
_arrivalTW = TimeWindow(twMin, twMax);
//Assign value (direct time to
std::from_chars(currentRow[4].data(), currentRow[4].data() + currentRow[4].size(), _deltaTime);
Request::Request(const DATRow& currentRow, double deltaRatio, const Graph& graph) : Request(currentRow, graph){
_deltaTime = floor(_deltaTime * deltaRatio);
std::from_chars(currentRow[5].data(), currentRow[5].data() + currentRow[5].size(), _weight);
_departureTW.min = _arrivalTW.min - _deltaTime;
_departureTW.max = _arrivalTW.max - graph.getShortestSAEVPath(_originNodeIndex, _destinationNodeIndex);
}
std::vector<Request> Request::getRequestsFromFile(const std::string& datFilePath, const Graph& graph) {
......
......@@ -51,9 +51,8 @@ void SAEVKeyPoint::setMaxTw(int maxTw) {
SAEVKeyPoint::SAEVKeyPoint(const Graph &graph, const Request &request, bool isOrigin) : _isOrigin(isOrigin), _requestPointer(&request) {
if(isOrigin) {
setNodeIndex(request.getOriginNodeIndex());
_minTW = request.getArrivalTw().min - request.getDeltaTime();
_maxTW = request.getArrivalTw().max - graph.getShortestSAEVPath(request.getOriginNodeIndex(),
request.getDestinationNodeIndex());
_minTW = request.getDepartureTw().min;
_maxTW = request.getDepartureTw().max;
} else {
setNodeIndex(request.getDestinationNodeIndex());
_minTW = request.getArrivalTw().min;
......
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