mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
86 lines
2.9 KiB
XML
86 lines
2.9 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>INFINITE</fleetSize>
|
|
<fleetComposition>HOMOGENEOUS</fleetComposition>
|
|
</problemType>
|
|
<vehicles>
|
|
<vehicle>
|
|
<id>v1</id>
|
|
<typeId>vehType</typeId>
|
|
<startLocation>
|
|
<id>loc</id>
|
|
</startLocation>
|
|
<endLocation>
|
|
<id>loc</id>
|
|
</endLocation>
|
|
<timeSchedule>
|
|
<start>0.0</start>
|
|
<end>1.7976931348623157E308</end>
|
|
</timeSchedule>
|
|
<returnToDepot>false</returnToDepot>
|
|
</vehicle>
|
|
<vehicle>
|
|
<id>v2</id>
|
|
<typeId>vehType2</typeId>
|
|
<startLocation>
|
|
<id>startLoc</id>
|
|
<coord x="1.0" y="2.0"/>
|
|
</startLocation>
|
|
<endLocation>
|
|
<id>endLoc</id>
|
|
<coord x="4.0" y="5.0"/>
|
|
</endLocation>
|
|
<timeSchedule>
|
|
<start>0.0</start>
|
|
<end>1.7976931348623157E308</end>
|
|
</timeSchedule>
|
|
<returnToDepot>true</returnToDepot>
|
|
</vehicle>
|
|
</vehicles>
|
|
<vehicleTypes>
|
|
<type>
|
|
<id>vehType</id>
|
|
<capacity>20</capacity>
|
|
<costs>
|
|
<fixed>0.0</fixed>
|
|
<distance>1.0</distance>
|
|
<time>0.0</time>
|
|
</costs>
|
|
</type>
|
|
<type>
|
|
<id>vehType2</id>
|
|
<capacity>200</capacity>
|
|
<costs>
|
|
<fixed>0.0</fixed>
|
|
<distance>1.0</distance>
|
|
<time>0.0</time>
|
|
</costs>
|
|
</type>
|
|
</vehicleTypes>
|
|
<services>
|
|
<service id="2" type="service">
|
|
<locationId>loc2</locationId>
|
|
<capacity-demand>1</capacity-demand>
|
|
<duration>4.0</duration>
|
|
<timeWindows>
|
|
<timeWindow>
|
|
<start>0.0</start>
|
|
<end>1.7976931348623157E308</end>
|
|
</timeWindow>
|
|
</timeWindows>
|
|
</service>
|
|
<service id="1" type="service">
|
|
<locationId>loc</locationId>
|
|
<capacity-demand>1</capacity-demand>
|
|
<duration>2.0</duration>
|
|
<timeWindows>
|
|
<timeWindow>
|
|
<start>0.0</start>
|
|
<end>1.7976931348623157E308</end>
|
|
</timeWindow>
|
|
</timeWindows>
|
|
</service>
|
|
</services>
|
|
</problem>
|