-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: m-kro <[email protected]>
- Loading branch information
Showing
6 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Warning: ParkingArea 'pa_end' is targeted by rerouter 'pa_middle' but doesn't have its own rerouter. This may cause parking search to abort. | ||
Warning: No connection between edge 'end' and edge 'end' found. | ||
Warning: No connection between edge 'end' and edge 'end' found. | ||
Warning: Teleporting vehicle 'veh1'; waited too long (jam), lane='end_0', time=486.50. | ||
Warning: Vehicle 'veh1' teleports beyond arrival edge 'end', time=486.50. | ||
Warning: Vehicle 'veh1' skips stop on lane 'end_0' time=486.50. | ||
Warning: No connection between edge 'end' and edge 'end' found. | ||
Warning: No connection between edge 'end' and edge 'end' found. | ||
Warning: Teleporting vehicle 'veh2'; waited too long (jam), lane='end_0', time=790.00. | ||
Warning: Vehicle 'veh2' teleports beyond arrival edge 'end', time=790.00. | ||
Warning: Vehicle 'veh2' skips stop on lane 'end_0' time=790.00. |
19 changes: 19 additions & 0 deletions
19
tests/sumo/bugs/15xxx/ticket15552/input_additional.add.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<additional> | ||
<parkingArea id="pa_beg" lane="beg_0" startPos="0" roadsideCapacity="1"/> | ||
<parkingArea id="pa_middle" lane="middle_0" startPos="0" roadsideCapacity="5"/> | ||
<parkingArea id="pa_end" lane="end_0" startPos="0" roadsideCapacity="5"/> | ||
|
||
<rerouter id="pa_beg" edges="beg"> | ||
<interval begin="0.0" end="3600.0"> | ||
<parkingAreaReroute id="pa_beg" visible="true"/> | ||
<parkingAreaReroute id="pa_middle" visible="true"/> | ||
</interval> | ||
</rerouter> | ||
|
||
<rerouter id="pa_middle" edges="middle"> | ||
<interval begin="0.0" end="3600.0"> | ||
<parkingAreaReroute id="pa_middle" visible="true"/> | ||
<parkingAreaReroute id="pa_end" visible="false"/> | ||
</interval> | ||
</rerouter> | ||
</additional> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd"> | ||
|
||
<trip id="parker0" depart="0" from="end" to="end"> | ||
<stop parkingArea="pa_end" until="3600"/> | ||
</trip> | ||
<trip id="parker1" depart="0" from="end" to="end"> | ||
<stop parkingArea="pa_end" until="3600"/> | ||
</trip> | ||
<trip id="parker2" depart="0" from="end" to="end"> | ||
<stop parkingArea="pa_end" until="3600"/> | ||
</trip> | ||
<trip id="parker3" depart="0" from="end" to="end"> | ||
<stop parkingArea="pa_end" until="3600"/> | ||
</trip> | ||
<trip id="parker4" depart="0" from="end" to="end"> | ||
<stop parkingArea="pa_end" until="3600"/> | ||
</trip> | ||
|
||
<trip id="veh1" depart="50" from="beg" to="end" speedFactor="1.2"> | ||
<stop parkingArea="pa_beg" until="80"/> | ||
<stop parkingArea="pa_middle" until="150"/> | ||
<stop parkingArea="pa_end" until="6000"/> | ||
</trip> | ||
|
||
<trip id="veh2" depart="80" from="beg" to="end" speedFactor="1.2"> | ||
<stop parkingArea="pa_beg" until="120"/> | ||
<stop parkingArea="pa_middle" until="200"/> | ||
<stop parkingArea="pa_end" until="6000"/> | ||
</trip> | ||
</routes> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--no-step-log --net-file=three_split.net.xml | ||
-a=input_additional.add.xml | ||
-r=input_routes.rou.xml | ||
--step-length=0.5 | ||
--device.rerouting.synchronize=true | ||
--device.rerouting.period=150 |
Empty file.