Skip to content

Commit 77a95b5

Browse files
authored
Merge pull request #13 from route4me/advanced_constraints
Added AdvancedConstraints fields: depot_address,
2 parents fd57111 + aa4ad58 commit 77a95b5

File tree

4 files changed

+196
-0
lines changed

4 files changed

+196
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<?php
2+
3+
namespace UnitTestFiles\Test;
4+
5+
use Route4Me\Address;
6+
use Route4Me\Constants;
7+
use Route4Me\Enum\AlgorithmType;
8+
use Route4Me\Enum\DeviceType;
9+
use Route4Me\Enum\Metric;
10+
use Route4Me\OptimizationProblem;
11+
use Route4Me\OptimizationProblemParams;
12+
use Route4Me\Route4Me;
13+
use Route4Me\RouteParameters;
14+
use Route4Me\V5\Addresses\RouteAdvancedConstraints;
15+
16+
class AdvancedConstraintsUnitTests extends \PHPUnit\Framework\TestCase {
17+
public static $problem;
18+
19+
public static function setUpBeforeClass()
20+
{
21+
Route4Me::setApiKey(Constants::API_KEY);
22+
self::$problem = null;
23+
}
24+
25+
public function testAdvancedConstraintsExample12()
26+
{
27+
$addresses = array_map('str_getcsv', file(dirname(__FILE__).'/data/locations.csv'));
28+
array_walk($addresses, function(&$a) use ($addresses) { $a = Address::fromArray(array_combine($addresses[0], $a)); });
29+
array_shift($addresses);
30+
31+
$parameters = RouteParameters::fromArray([
32+
'algorithm_type' => AlgorithmType::ADVANCED_CVRP_TW,
33+
'store_route' => false,
34+
'rt' => true,
35+
'parts' => 30,
36+
'metric' => Metric::MATRIX,
37+
'member_id' => 444333,
38+
'route_name' => "Drivers Schedules - 3 Territories",
39+
'optimize' => "Distance",
40+
'distance_unit' => "mi",
41+
'device_type' => DeviceType::WEB,
42+
'travel_mode' => "Driving",
43+
'advanced_constraints' => []
44+
]);
45+
46+
$zones = [["ZONE 01"], ["ZONE 02"], ["ZONE 03"]];
47+
48+
for($i = 0; $i < 30; ++$i)
49+
{
50+
$parameters->advanced_constraints[] = RouteAdvancedConstraints::fromArray([
51+
'tags' => [$zones[$i % 3]],
52+
'members_count' => 1,
53+
'available_time_windows' => [[(8 + 5) * 3600, (11 + 5) * 3600]],
54+
'location_sequence_pattern' => [Address::fromArray([
55+
'address' => "RETAIL LOCATION",
56+
'alias' => "RETAIL LOCATION",
57+
'lat' => 25.8741751,
58+
'lng' => -80.1288583,
59+
'time' => 300
60+
])]
61+
]);
62+
}
63+
64+
$optimizationParameters = new OptimizationProblemParams();
65+
$optimizationParameters->setAddresses($addresses);
66+
$optimizationParameters->setParameters($parameters);
67+
68+
self::$problem = OptimizationProblem::optimize($optimizationParameters);
69+
70+
$this->assertNotNull(self::$problem->optimization_problem_id);
71+
$this->assertEquals(self::$problem->parameters->route_name, 'Drivers Schedules - 3 Territories');
72+
}
73+
74+
public static function tearDownAfterClass()
75+
{
76+
if(!is_null(self::$problem->optimization_problem_id))
77+
{
78+
$params = [
79+
'optimization_problem_ids' => ['0' => self::$problem->optimization_problem_id],
80+
'redirect' => 0,
81+
];
82+
83+
$result = self:: $problem->removeOptimization($params);
84+
85+
if ($result!=null && $result['status']==true) {
86+
echo "The test optimization was removed <br>";
87+
} else {
88+
echo "Cannot remove the test optimization <br>";
89+
}
90+
}
91+
}
92+
}

UnitTestFiles/Test/data/locations.csv

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
address,lat,lng,group
2+
2505,25.767596,-80.226998,0
3+
2687,25.786497,-80.207408,0
4+
472,25.66043,-80.417161,1
5+
1235,25.688111,-80.456527,1
6+
2849,25.839934,-80.189969,2
7+
887,25.755872,-80.419184,0
8+
2584,25.720941,-80.289537,0
9+
2750,25.837605,-80.294638,0
10+
1018,25.693624,-80.26164,0
11+
714,25.853241,-80.205793,2
12+
1220,25.463502,-80.456949,1
13+
1360,25.712858,-80.271239,0
14+
3818,25.900222,-80.22482,2
15+
2717,25.894207,-80.345417,2
16+
591,25.706562,-80.412644,1
17+
2156,25.525801,-80.401086,1
18+
1339,25.630437,-80.43103,1
19+
797,25.868294,-80.302895,2
20+
2634,25.935107,-80.260117,2
21+
2731,25.920058,-80.229779,2
22+
1787,25.825283,-80.189021,2
23+
1280,25.730165,-80.441235,1
24+
1807,25.748351,-80.250563,0
25+
1554,25.478459,-80.470336,1
26+
1453,25.812783,-80.351845,0
27+
3608,25.786452,-80.323251,0
28+
3407,25.659019,-80.415279,1
29+
1886,25.919989,-80.356243,2
30+
1695,25.718286,-80.460965,1
31+
3363,25.850832,-80.318992,0
32+
1174,25.685317,-80.383784,1
33+
1991,25.933406,-80.169637,2
34+
3444,25.883938,-80.193806,2
35+
2057,25.85603,-80.187272,2
36+
1025,25.466222,-80.420452,1
37+
1947,25.774612,-80.382098,0
38+
3745,25.944004,-80.150793,2
39+
3633,25.949261,-80.279658,2
40+
3591,25.928255,-80.30407,2
41+
3491,25.468136,-80.427913,1
42+
566,25.70715,-80.370123,0
43+
2254,25.781458,-80.393427,0
44+
2201,25.82146,-80.186447,2
45+
1343,25.753276,-80.274449,0
46+
3763,25.666494,-80.491322,1

src/Route4Me/V5/Addresses/RouteAdvancedConstraints.php

+29
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,33 @@ class RouteAdvancedConstraints extends Common
5050
*/
5151
public $route4me_members_id;
5252

53+
/**
54+
* An array containing Address objects.
55+
* @var Address
56+
*/
57+
public $depot_address;
58+
59+
/**
60+
* An array of locations.
61+
* @var object[]
62+
*/
63+
public $location_sequence_pattern;
64+
65+
/**
66+
* Group.
67+
* @var string
68+
*/
69+
public $group;
70+
71+
public static function fromArray(array $params)
72+
{
73+
$routeParams = new self();
74+
foreach ($params as $key => $value) {
75+
if (property_exists($routeParams, $key)) {
76+
$routeParams->{$key} = $value;
77+
}
78+
}
79+
80+
return $routeParams;
81+
}
5382
}

src/Route4Me/V5/Routes/RouteAdvancedConstraints.php

+29
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,33 @@ class RouteAdvancedConstraints extends \Route4Me\Common
4242
*/
4343
public $route4me_members_id;
4444

45+
/**
46+
* An array containing Address objects.
47+
* @var Address
48+
*/
49+
public $depot_address;
50+
51+
/**
52+
* An array of locations.
53+
* @var object[]
54+
*/
55+
public $location_sequence_pattern;
56+
57+
/**
58+
* Group.
59+
* @var string
60+
*/
61+
public $group;
62+
63+
public static function fromArray(array $params)
64+
{
65+
$routeParams = new self();
66+
foreach ($params as $key => $value) {
67+
if (property_exists($routeParams, $key)) {
68+
$routeParams->{$key} = $value;
69+
}
70+
}
71+
72+
return $routeParams;
73+
}
4574
}

0 commit comments

Comments
 (0)