mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
165 lines
5.1 KiB
XML
165 lines
5.1 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>HETEROGENEOUS</fleetComposition>
|
|
</problemType>
|
|
|
|
<vehicles>
|
|
<vehicle>
|
|
<id>v1</id>
|
|
<location>
|
|
<id>depotLoc2</id>
|
|
<coord x="100.0" y="100.0"/>
|
|
</location>
|
|
<typeId>vehType</typeId>
|
|
<timeSchedule>
|
|
<start>0.0</start>
|
|
<end>1000.0</end>
|
|
</timeSchedule>
|
|
</vehicle>
|
|
<vehicle>
|
|
<id>v2</id>
|
|
<location>
|
|
<id>depotLoc</id>
|
|
<coord x="10.0" y="100.0"/>
|
|
</location>
|
|
<typeId>vehType2</typeId>
|
|
<timeSchedule>
|
|
<start>0.0</start>
|
|
<end>1000.0</end>
|
|
</timeSchedule>
|
|
</vehicle>
|
|
</vehicles>
|
|
<vehicleTypes>
|
|
<type>
|
|
<id>vehType</id>
|
|
<capacity>20</capacity>
|
|
<costs>
|
|
<fixed>0.0</fixed>
|
|
<distance>0.0</distance>
|
|
<time>0.0</time>
|
|
</costs>
|
|
</type>
|
|
<type>
|
|
<id>vehType2</id>
|
|
<capacity>200</capacity>
|
|
<costs>
|
|
<fixed>0.0</fixed>
|
|
<distance>0.0</distance>
|
|
<time>0.0</time>
|
|
</costs>
|
|
</type>
|
|
</vehicleTypes>
|
|
|
|
<services>
|
|
<service id="1" type="service">
|
|
<locationId>j(1,5)</locationId>
|
|
<coord x="10.0" y="10.0"/>
|
|
<capacity-demand>1</capacity-demand>
|
|
<duration>0.0</duration>
|
|
<timeWindows>
|
|
<timeWindow>
|
|
<start>0.0</start>
|
|
<end>4000.0</end>
|
|
</timeWindow>
|
|
</timeWindows>
|
|
</service>
|
|
|
|
<service id="2" type="service">
|
|
<locationId>i(3,9)</locationId>
|
|
<coord x="10.0" y="10.0"/>
|
|
<capacity-demand>1</capacity-demand>
|
|
<duration>0.0</duration>
|
|
<timeWindows>
|
|
<timeWindow>
|
|
<start>0.0</start>
|
|
<end>4000.0</end>
|
|
</timeWindow>
|
|
</timeWindows>
|
|
</service>
|
|
|
|
<service id="4" type="service">
|
|
<locationId>i(3,9)</locationId>
|
|
<coord x="10.0" y="10.0"/>
|
|
<capacity-demand>1</capacity-demand>
|
|
<duration>0.0</duration>
|
|
<timeWindows>
|
|
<timeWindow>
|
|
<start>0.0</start>
|
|
<end>4000.0</end>
|
|
</timeWindow>
|
|
</timeWindows>
|
|
</service>
|
|
</services>
|
|
|
|
<shipments>
|
|
<shipment id="3">
|
|
<pickup>
|
|
<locationId>i(3,9)</locationId>
|
|
<coord x="10.0" y="10.0"/>
|
|
<duration>0.0</duration>
|
|
<timeWindows>
|
|
<timeWindow>
|
|
<start>0.0</start>
|
|
<end>4000.0</end>
|
|
</timeWindow>
|
|
</timeWindows>
|
|
</pickup>
|
|
<delivery>
|
|
<locationId>i(9,9)</locationId>
|
|
<coord x="10.0" y="0.0"/>
|
|
<duration>0.0</duration>
|
|
<timeWindows>
|
|
<timeWindow>
|
|
<start>0.0</start>
|
|
<end>4000.0</end>
|
|
</timeWindow>
|
|
</timeWindows>
|
|
</delivery>
|
|
<capacity-demand>1</capacity-demand>
|
|
</shipment>
|
|
</shipments>
|
|
|
|
<solutions>
|
|
<solution>
|
|
<cost>100.0</cost>
|
|
<routes>
|
|
<route>
|
|
<cost>0.0</cost>
|
|
<driverId>noDriver</driverId>
|
|
<vehicleId>v1</vehicleId>
|
|
<start>10.0</start>
|
|
<act type="service">
|
|
<serviceId>1</serviceId>
|
|
<arrTime>20.0</arrTime>
|
|
<endTime>30.0</endTime>
|
|
</act>
|
|
<act type="service">
|
|
<serviceId>2</serviceId>
|
|
<arrTime>40.0</arrTime>
|
|
<endTime>80.0</endTime>
|
|
</act>
|
|
<act type="pickupShipment">
|
|
<shipmentId>3</shipmentId>
|
|
<arrTime>40.0</arrTime>
|
|
<endTime>80.0</endTime>
|
|
</act>
|
|
<act type="deliverShipment">
|
|
<shipmentId>3</shipmentId>
|
|
<arrTime>40.0</arrTime>
|
|
<endTime>80.0</endTime>
|
|
</act>
|
|
<end>100.0</end>
|
|
</route>
|
|
</routes>
|
|
<unassignedJobs>
|
|
<job id="4"/>
|
|
</unassignedJobs>
|
|
</solution>
|
|
</solutions>
|
|
|
|
</problem>
|