mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
88 lines
2.7 KiB
XML
88 lines
2.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<problem xmlns="http://www.w3schools.com"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.w3schools.com vrp_xml_schema.xsd">
|
|
<problemType>
|
|
<fleetSize>FINITE</fleetSize>
|
|
<fleetComposition>HOMOGENEOUS</fleetComposition>
|
|
</problemType>
|
|
<vehicles>
|
|
<vehicle>
|
|
<id>veh1</id>
|
|
<typeId>type1</typeId>
|
|
<startLocation>
|
|
<id>[x=0.0][y=0.0]</id>
|
|
<coord x="0.0" y="0.0"/>
|
|
</startLocation>
|
|
<endLocation>
|
|
<id>[x=0.0][y=0.0]</id>
|
|
<coord x="0.0" y="0.0"/>
|
|
</endLocation>
|
|
<timeSchedule>
|
|
<start>0.0</start>
|
|
<end>46800.0</end>
|
|
</timeSchedule>
|
|
<returnToDepot>true</returnToDepot>
|
|
</vehicle>
|
|
<vehicle>
|
|
<id>2</id>
|
|
<typeId>type1</typeId>
|
|
<startLocation>
|
|
<id>[x=0.0][y=0.0]</id>
|
|
<coord x="0.0" y="0.0"/>
|
|
</startLocation>
|
|
<endLocation>
|
|
<id>[x=0.0][y=0.0]</id>
|
|
<coord x="0.0" y="0.0"/>
|
|
</endLocation>
|
|
<timeSchedule>
|
|
<start>0.0</start>
|
|
<end>64800.0</end>
|
|
</timeSchedule>
|
|
<returnToDepot>true</returnToDepot>
|
|
</vehicle>
|
|
</vehicles>
|
|
<vehicleTypes>
|
|
<type>
|
|
<id>type1</id>
|
|
<capacity-dimensions>
|
|
<dimension index="0">0</dimension>
|
|
</capacity-dimensions>
|
|
<costs>
|
|
<fixed>0.0</fixed>
|
|
<distance>1.0</distance>
|
|
<time>0.0</time>
|
|
</costs>
|
|
</type>
|
|
</vehicleTypes>
|
|
<services>
|
|
<service id="2" type="service">
|
|
<locationId>loc_s2</locationId>
|
|
<coord x="1000.0" y="0.0"/>
|
|
<capacity-dimensions>
|
|
<dimension index="0">0</dimension>
|
|
</capacity-dimensions>
|
|
<duration>0.0</duration>
|
|
</service>
|
|
<service id="1" type="service">
|
|
<locationId>loc_s3</locationId>
|
|
<coord x="1000.0" y="1000.0"/>
|
|
<capacity-dimensions>
|
|
<dimension index="0">0</dimension>
|
|
</capacity-dimensions>
|
|
<duration>0.0</duration>
|
|
</service>
|
|
</services>
|
|
<initialRoutes>
|
|
<route>
|
|
<driverId>noDriver</driverId>
|
|
<vehicleId>veh1</vehicleId>
|
|
<start>0.</start>
|
|
<act type="deliverService">
|
|
<serviceId>1</serviceId>
|
|
</act>
|
|
<end/>
|
|
</route>
|
|
|
|
</initialRoutes>
|
|
</problem>
|