Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SAEV Greedy Fleet Sizing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Romain BERNARD
SAEV Greedy Fleet Sizing
Commits
ac9a67d0
Commit
ac9a67d0
authored
9 months ago
by
Romain BERNARD
Browse files
Options
Downloads
Patches
Plain Diff
[IMPORT BREAKING CHANGE] allow setting min TW in imports
parent
a8403e4c
No related branches found
Branches containing commit
No related tags found
1 merge request
!2
Route manipulation API with automatic constraint propagation
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/instance/requests/Request.cpp
+25
-23
25 additions, 23 deletions
src/instance/requests/Request.cpp
src/routes/vehicle/SAEVKeyPoint.cpp
+2
-3
2 additions, 3 deletions
src/routes/vehicle/SAEVKeyPoint.cpp
with
27 additions
and
26 deletions
src/instance/requests/Request.cpp
+
25
−
23
View file @
ac9a67d0
...
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
src/routes/vehicle/SAEVKeyPoint.cpp
+
2
−
3
View file @
ac9a67d0
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment