1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

fixed broken link and correct syntax with md

This commit is contained in:
jsroyal 2017-06-04 00:03:30 +05:30
parent 29fbdd6e66
commit 32aa164afc
5 changed files with 56 additions and 14 deletions

View file

@ -0,0 +1,41 @@
<?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>
</problemType>
<shipments>
<shipment id="1">
<pickup>
<location>
<id>[x=1.0][y=2.0]</id>
<coord x="1.0" y="2.0"/>
</location>
<duration>100.0</duration>
<timeWindows>
<timeWindow>
<start>1.0</start>
<end>2.0</end>
</timeWindow>
</timeWindows>
</pickup>
<delivery>
<location>
<id>delLoc</id>
<coord x="5.0" y="6.0"/>
</location>
<duration>50.0</duration>
<timeWindows>
<timeWindow>
<start>3.0</start>
<end>4.0</end>
</timeWindow>
</timeWindows>
</delivery>
<capacity-dimensions>
<dimension index="0">10</dimension>
</capacity-dimensions>
<requiredSkills>skill3, skill1, skill2</requiredSkills>
</shipment>
</shipments>
</problem>