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
baca5e46
Commit
baca5e46
authored
1 year ago
by
Romain BERNARD
Committed by
Romain BERNARD
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
shortest path container testing
parent
27ac6610
No related branches found
Branches containing commit
No related tags found
1 merge request
!1
Transit algorithm implementation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/debug.cpp
+17
-4
17 additions, 4 deletions
test/debug.cpp
with
17 additions
and
4 deletions
test/debug.cpp
+
17
−
4
View file @
baca5e46
...
...
@@ -5,6 +5,7 @@
#include
"../src/instance/graph/Graph.h"
#include
"../src/ShortestPath/Transit/TransitStateContainer.h"
#include
"../src/ShortestPath/Transit/TransitShortestPathPrecompute.h"
#include
"../src/ShortestPath/Transit/TransitShortestPathContainer.h"
int
main
()
{
// Graph give_me_a_name("../resources/test/instances/basic_debug_instance/nodes.csv",
...
...
@@ -17,38 +18,50 @@ int main() {
Graph
graphFromSingleFile
(
"../resources/test/instances/"
+
instanceFolder
+
datFile
);
graphFromSingleFile
.
exportGraphToFiles
(
"../resources/test/outputs/"
+
instanceFolder
);
TransitShortestPathContainer
contiguousContainer
(
graphFromSingleFile
.
getNbNodes
());
for
(
auto
&
ptLine
:
graphFromSingleFile
.
getPTLines
())
{
for
(
int
i
=
0
;
i
<
ptLine
.
size
();
++
i
)
{
for
(
auto
&
startingTime
:
ptLine
.
getTimetable
(
i
))
{
TransitShortestPathPrecompute
::
executeAlgorithm
(
graphFromSingleFile
,
ptLine
.
getNode
(
i
),
startingTime
);
contiguousContainer
.
addShortestPathCollection
(
i
,
startingTime
,
graphFromSingleFile
.
getNbNodes
(),
TransitShortestPathPrecompute
::
executeAlgorithm
(
graphFromSingleFile
,
ptLine
.
getNode
(
i
),
startingTime
));
contiguousContainer
.
getShortestPathsFromTime
(
i
,
startingTime
-
1
);
}
}
}
TransitShortestPathContainer
crossingContainer
(
graphFromSingleFile
.
getNbNodes
());
Graph
crossingLinesGraph
(
"../resources/test/instances/multiple_crossing_lines_debug_instance/"
+
datFile
);
for
(
auto
&
ptLine
:
crossingLinesGraph
.
getPTLines
())
{
for
(
int
i
=
0
;
i
<
ptLine
.
size
();
++
i
)
{
for
(
auto
&
startingTime
:
ptLine
.
getTimetable
(
i
))
{
TransitShortestPathPrecompute
::
executeAlgorithm
(
crossingLinesGraph
,
ptLine
.
getNode
(
i
),
startingTime
);
crossingContainer
.
addShortestPathCollection
(
i
,
startingTime
,
crossingLinesGraph
.
getNbNodes
(),
TransitShortestPathPrecompute
::
executeAlgorithm
(
crossingLinesGraph
,
ptLine
.
getNode
(
i
),
startingTime
));
crossingContainer
.
getShortestPathsFromTime
(
i
,
startingTime
-
1
);
}
}
}
TransitShortestPathContainer
cycleContainer
(
graphFromSingleFile
.
getNbNodes
());
Graph
cyclingLineGraph
(
"../resources/test/instances/cycling_line_debug_instance/"
+
datFile
);
for
(
auto
&
ptLine
:
cyclingLineGraph
.
getPTLines
())
{
for
(
int
i
=
0
;
i
<
ptLine
.
size
();
++
i
)
{
for
(
auto
&
startingTime
:
ptLine
.
getTimetable
(
i
))
{
TransitShortestPathPrecompute
::
executeAlgorithm
(
cyclingLineGraph
,
ptLine
.
getNode
(
i
),
startingTime
);
cycleContainer
.
addShortestPathCollection
(
i
,
startingTime
,
cyclingLineGraph
.
getNbNodes
(),
TransitShortestPathPrecompute
::
executeAlgorithm
(
cyclingLineGraph
,
ptLine
.
getNode
(
i
),
startingTime
));
cycleContainer
.
getShortestPathsFromTime
(
i
,
startingTime
-
1
);
}
}
}
TransitShortestPathContainer
multiCycleContainer
(
graphFromSingleFile
.
getNbNodes
());
Graph
multipleCyclingLinesGraph
(
"../resources/test/instances/multiple_cycling_lines_debug_instance/"
+
datFile
);
for
(
auto
&
ptLine
:
multipleCyclingLinesGraph
.
getPTLines
())
{
for
(
int
i
=
0
;
i
<
ptLine
.
size
();
++
i
)
{
for
(
auto
&
startingTime
:
ptLine
.
getTimetable
(
i
))
{
TransitShortestPathPrecompute
::
executeAlgorithm
(
multipleCyclingLinesGraph
,
ptLine
.
getNode
(
i
),
startingTime
);
multiCycleContainer
.
addShortestPathCollection
(
i
,
startingTime
,
multipleCyclingLinesGraph
.
getNbNodes
(),
TransitShortestPathPrecompute
::
executeAlgorithm
(
multipleCyclingLinesGraph
,
ptLine
.
getNode
(
i
),
startingTime
));
multiCycleContainer
.
getShortestPathsFromTime
(
i
,
startingTime
-
1
);
}
}
}
...
...
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