We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af2854 commit c188221Copy full SHA for c188221
src/main/java/ch/naviqore/raptor/router/Query.java
@@ -80,21 +80,6 @@ class Query {
80
raptorConfig.getDaysToScan());
81
}
82
83
- /**
84
- * Check if there are any marked stops in the marked stops mask.
85
- *
86
- * @param markedStopsMask the marked stops mask to check.
87
- * @return true if there are any marked stops, false otherwise.
88
- */
89
- private static boolean hasMarkedStops(boolean[] markedStopsMask) {
90
- for (boolean b : markedStopsMask) {
91
- if (b) {
92
- return true;
93
- }
94
95
- return false;
96
97
-
98
/**
99
* Main control flow of the routing algorithm. Spawns from source stops, coordinates route scanning, footpath
100
* relaxation, and time/label updates in the correct order.
0 commit comments