#PAGE_PARAMS# #ADS_HEAD_SCRIPTS# #MICRODATA#

Distributed forecasting and ant colony optimization for the bike-sharing rebalancing problem with unserved demands


Authors: Yiwei Fan aff001;  Gang Wang aff003;  Xiaoling Lu aff001;  Gaobin Wang aff004
Authors place of work: Center for Applied Statistics, Renmin University of China, Beijing, China aff001;  School of Statistics, Renmin University of China, Beijing, China aff002;  Department of Decision & Information Sciences, Charlton College of Business, University of Massachusetts Dartmouth, MA, United States of America aff003;  Invesco Great Wall Fund Management, Shenzhen, China aff004
Published in the journal: PLoS ONE 14(12)
Category: Research Article
doi: https://doi.org/10.1371/journal.pone.0226204

Summary

Bike-sharing systems (BSS) have widely spread over many cities in the world as an environmentally friendly means to reduce air pollution and traffic congestion. This paper focuses on the bike-sharing rebalancing problem (BRP), which consists of two aspects: determining desired demands at each station and designing routes to redistribute bikes among stations. For the first task, we firstly apply the random forest, a very efficient machine learning algorithm, to forecast desired demands for each station, which can be easily implemented with distributed computing. For the second task, it belongs to the broad class of the vehicle routing problem with pickup and delivery (VRPPD). In most existing settings, all of the demands being strictly satisfied can lead to longer routes and add operational costs. In this paper, we propose a new model with unserved demands by relaxing demands satisfying constraints. Then, we design a distributed ant colony optimization (ACO) based algorithm with some specific modifications to increase its efficiency for the proposed model. We propose to use the percentage of average cost saving per bike as a metric to evaluate the performance of our method on cost-reducing and compare with existing methods and best-known values. Computational results on benchmarks show the advantage of our approach. Finally, we provide a real case study of BSS in Hangzhou, China, with insightful elaborations.

Keywords:

Algorithms – Optimization – Machine learning algorithms – machine learning – Pheromones – Decision trees – Insertion mutation

1 Introduction

As an emerging green transport, bike-sharing systems (BSS) have expanded in many cities around the world [1]. The BSS offers bikes for public use with high convenience because it allows customers to rent a bike at any self-serve bike station and return it to another. As information technology advances, customers can unlock bikes by scanning QR codes with mobile devices at parking areas without docks instead of placing bikes at fixed stations with docks. Such convenient rent-and-return operations result in a significant increase in the number of bike stations in a city. For example, since New York City launched its Citi Bike program, the number of bike stations has increased from 330 to 750 between August 2015 and January 2019 with more than 12,000 bikes (https://www.citibikenyc.com). As of January 2019, OFO has approximately 10 million bikes in more than 250 cities around 20 countries (http://www.ofo.so), while Mobike has 7 million bikes in more than 180 cities around nine countries (https://mobike.com/). Both OFO and Mobike have more than 200 million customers all over the world. Regardless of the kind of BSS, bikes are moved from one station to another each day. System operators perform redistribution of bikes that is called rebalancing to maintain balanced levels of occupation for each station, which results in ever-increasing operating costs.

This paper focuses on the bike-sharing rebalancing problem (BRP), which consists of two main aspects. Firstly, determine desired demands for each station which is generally a forecasting project. To identify the patterns of demands and make an accurate forecast for each station, in this paper, we utilize the random forest, a very efficient machine learning algorithm with many successful applications in different areas [2, 3]. The second task of BRP is to design routes to rebalance bikes, performed by capacitated vehicles at night (the static case, ignoring user activities) or continuously during the daytime (the dynamic case). In this paper, we consider the static case, which belongs to the broad class of the vehicle routing problem with pickup and delivery (VRPPD) [4]. For the VRPPD, customers have delivery or pickup demands. Vehicles, each having a limited capacity, transport objects (a set of commodities) between origins and destinations. Following the notation introduced in [5], the BRP is essentially a one-commodity (bike) many-to-many VRPPD, any station can serve as an origin or a destination for bikes. In real-life applications, the requirement of strictly satisfying all customer demands may lead to longer routes. For example, if some vehicle carries 20 bikes and a nearby station needs 21 bikes to be delivered, the vehicle must pick up one more bike from other stations to satisfy the need of 21 bikes. Based on this situation, one may consider leaving some of the customer demands unserved in exchange for shorter routes. Finding the balance between these two goals, the length of routes and customer demands fulfillment, is one of the extensions of the BRP. We design a new model, tackling it as a variant of the VRPPD, and develop a distributed ant colony optimization (ACO) based algorithm with some specific modifications for the proposed model. Both the random forest and the ACO can be implemented with distributed computing, making our approach possible to solve the BRP in the significant data context. We then propose to use the percentage of average cost saving per bike as a metric to evaluate the performance of our method on cost-reducing and compare with existing methods and best-known values. Computational results on benchmarks show the advantage of our approach. Finally, we provide a case study, BSS in Hangzhou, where the distance matrix is obtained from the API of Gaode Map (https://lbs.amap.com/api) as the actual distance.

This paper is organized as follows. In Section 2, we review existing methods for the BRP in the literature. In Section 3, we propose the new model for the BRP with unserved demands in mathematical formulations. In Section 4, we first introduce the random forest to forecast customer demands and then develop the ACO based algorithm to solve our model. We also discuss distributed computing strategies for both the random forest and the ACO based algorithm. In Section 5, computational results on benchmarks show the strength of our proposed approach. In Section 6, we provide a real case study of BBS. Section 7 concludes.

2 Related work

2.1 Demand analysis

Determining customer demands for each station, as a forecasting project, has been discussed in the literature. Berbeglia et al. [5] modeled the time evolution of the dynamics of movements and disentangled the spatial patterns to forecast the number of rentals in the city. Rixey [6] developed a robust regression model for the prediction of station ridership and identified many variables that had statistically significant correlations with station-level bike sharing ridership. Schuijbroek et al. [7] modeled the stochastic demand by viewing the inventory at each station as a non-stationary queuing system with a finite capacity, and derived service level requirements using the transient distribution of the availability of bikes and docks. In this paper, we use the random forest to forecast demands as it is efficient and can find explanatory variables for managerial decision making.

2.2 Rebalancing operations

Existing solution approaches to find routes in the BRP are mainly derived from methods for the VRPPD, which can be classified into two categories, exact and heuristic algorithms.

2.2.1 Exact algorithms

Exact algorithms enable the finding of optimal solutions but are time-consuming. The exact methods proposed for the VRPPD mainly focus on the branch-and-cut algorithm [8, 9]. As for the BRP, Dell et al. [4] developed tailor-made branch-and-cut algorithms to solve four mixed-integer linear programming formulations. Erdoğan et al. [10] provided a branch-and-cut algorithm using combinatorial Benders cuts. Branch-and-cut algorithms are also discussed in [11] and [12]. The computational results reported are generally obtained from solving the problems with up to 100 nodes.

2.2.2 Heuristic algorithms

Since the VRPPD is NP-hard [13], approximate solutions are preferred. Therefore, many heuristics arise in the literature, including classical heuristics and metaheuristics. Classical heuristics perform a relatively limited exploration of the search space and typically produce good quality solutions within modest computing time. Constructive approaches and clustering-based methods that assign nodes into clusters and then generate routes are typical ones. More reviews about heuristics for the VRPPD can be found in [14] and [15]. Kloimüllner et al. [16] addressed the BRP by a novel simplified problem definition in conjunction with a cluster-first route-second approach. A similar idea is discussed in [7], where a new cluster-first route-second heuristic is developed. As opposed to classical heuristics, metaheuristics deeply search the solution space, which results in solutions with much higher quality. Neural network algorithm [17], tabu search [18], genetic algorithm [19] and simulated annealing [20] are the most popular ones. Ho and Szeto [21] provided a tabu search for the BRP, where several intensification/diversification mechanisms are applied to the solution obtained from tabu search to improve the solution quality. Dell et al. [22] tackled the BRP with a destroy and repair metaheuristic algorithm, which makes use of a new effective constructive heuristic and several local search procedures. Cruz et al. [23] proposed an iterated local search based heuristic to solve the BRP.

Another important metaheuristic is the ant colony optimization (ACO), inspired by an analogy with real ant colonies foraging for good. The ACO is firstly proposed by [24, 25] to solve the traveling salesman problem and then widely applied in practices [26, 27]. Among the earliest studies, Bull et al. [28] presented the ACO for the vehicle routing problem (VRP) with one central depot and identical vehicles. After that, many researchers [2932] proposed the improved ACO to solve the VRP and show that the ACO was competitive with other metaheuristics. As for the VRPPD, Gajpal and Abad [33] used the ACO with a construction rule as well as two multi-route local search schemes to solve it. Falcon et al. [34] studied the ACO for the one-commodity traveling salesman problem with selective pickup and delivery within reasonable time and space constraints. Çatay [35] proposed an ACO employing a new saving-based visibility function and a pheromone updating procedure. The numerical tests with the well-known benchmark problems from the literature show that the proposed approach provides competitive results. Different from rich applications in the VRP and the VRPPD, utilizing the ACO to solve the BRP is still limited. Di et al. [36] proposed a novel hybrid approach, combining the constraint programming and the ACO to solve the BRP, while the computational study is not comprehensive. Considering the encouraging results obtained in the VRP and the VRPPD, the application of the ACO to the BRP is an interesting topic.

2.3 Unserved demands in the BRP

The BRP with unserved demands is primarily a relaxation formulation of demands satisfying constraints. Relaxation formulations are considered in existing literature, either allowing split deliveries or assuming that vehicles can visit each station an arbitrary number of times. Papazek et al. [37] addressed the problem of finding efficient vehicle tours by minimizing the objective function, consisting of demands deviations, loading activities, and the overall tour lengths. Raviv et al. [38] proposed mixed inter programming models, considering a convex penalty objective function minimizing user dissatisfaction which is linked to the inventory level of each station and tour lengths. Both of them belong to rich static rebalancing problems as introduced in [4], while the setting for our paper is more similar to the VRPPD, where each station is served once by one vehicle. Under this setting, the focus of our paper is to find a balance between the length of routes and demands fulfillment. The problem is tackled as a weighted sum scalarization of multi-objective optimization where the ACO has been widely applied [39, 40]. Besides, the characteristic that the ACO is easily implemented with distributed computing is also one of the motivations that we consider it to solve our proposed problem.

3 The BRP with unserved demands

3.1 Setting and notation

Consider a graph G = (N, A), where N = {v0} ∪ V with v0 representing the depot, V = {v1, v2, ⋯, vn} is the set of n stations, and A = {(i, j):i, jN} is the set of edges that connect all stations and the depot. The distance matrix is denoted by D = (dij)(n+1)×(n+1) with distance dij(i, jN) assigned to the edge (i, j). The demand at the station i is denoted by yi, iV, where yi > 0 means |yi| bikes to be picked up and yi < 0 represents |yi| bikes to be delivered. Assume that there are K vehicles in total with the maximum capacity C. Define a binary variable uij, taking value 1 if the edge (i, j) is traveled by a vehicle, and 0 otherwise. To guarantee that demands are satisfied and vehicle capacities are not exceeded, we introduce an additional variable fij, which is the number of bikes traveling from i to j, also called the flow over the edge (i, j). We summarize the notations as follows.

    Sets

  • N = set of the depot and stations

  • A = set of edges

    Parameters

  • dij = distance between i and j

  • yi = demand at the station i

  • K = number of vehicles

  • C = maximum capacity of a vehicle

    Decision variables

  • uij = whether the edge (i, j) is traveled by a vehicle

  • fij = the flow over the edge (i, j)

3.2 Mathematical formulation

The goal of the BRP is to find the shortest route under explicit constraints. In the standard BRP settings, there is no unserved demand allowed. According to [4], the mathematical formulation can be expressed as follows,










The objective function (1) aims to minimize the total length of all routes. The constraints (2) and (3) represent that each station in V is served once by only one vehicle. The constraints (4) and (5) ensure, respectively, that at most K vehicles leave the depot and, that all vehicles that are used return to the depot at the end of their route. The constraints (6) describe the classical subtour elimination constraints [4], imposing the connectivity of the solution. The constraints (7) ensure the balance of the entering and leaving flow. The constraints (8) guarantee that the demands of each station are satisfied, and vehicle capacities are not exceeded.

Furthermore, we give the following proposition to check the feasibility of a constructed route, which is useful for heuristic algorithms. Similar properties are also discussed in [22] and [41]. The proof is given in S1 Appendix.

Proposition 1 For a route o, which is an ordered sequence o1, o2, ⋯, o|o| with o1 = o|o| = v0 and oiV, i = 2, ⋯, |o| − 1,

(i) it is feasible if and only if C - max { 0 , max 2 ≤ i ≤ | o | - 1 ∑ j = 2 i y o j } + min { 0 , min 2 ≤ i ≤ | o | - 1 ∑ j = 2 i y o j } ≥ 0;

(ii) the initial number of bikes on a vehicle after it left the depot, denoted as z, can be any value in the range [ - min { 0 , min 2 ≤ i ≤ | o | - 1 ∑ j = 2 i y o j } , C - max { 0 , max 2 ≤ i ≤ | o | - 1 ∑ j = 2 i y o j } ].

As we stated in Section 1, if customer demands must be met strictly, it is likely that the length of routes will be greatly increased to satisfy a few demands. For example, after serving a certain station, there are 20 bikes carried on the vehicle, and the next closest station needs 21 bikes to be delivered. If the demands are required to be strictly met, the vehicle can only serve the remaining stations first, which may be far away. To avoid this situation, we relax the constraints (7) and (8) by introducing slack variables si, iV. Note that si denotes the number of bikes that the station i is unserved. Corresponding to the sign of yi, si > 0 means that there are si bikes unserved for the pickup service, and si < 0 means there are |si| bikes unserved for the delivery service. si = 0 means that the demands can be fully satisfied. The smaller |si|, the more the demands are satisfied. The relaxation formulation of the BRP with unserved demands can be expressed as follows,










The objective function (10) consists of two parts, where the first item represents the length of routes and the second item is the number of bikes unserved for all stations. It can be seen as a weighted sum scalarization of multi-objective optimization, where λ is a given parameter to balance the relative importance of the length of routes and customer demands fulfillment. The constraints (11)–(15) are the same as (2)–(6). The constraints (16) and (17) are relaxations of (7) and (8) after introducing slack variables. Note that for a given route, the initial number of bikes on a vehicle, denoted as z is adaptively determined by the constructed route, which can be computed according to the following proposition. The proof is given in S2 Appendix.

Proposition 2 For a route o, which is an ordered sequence o1, o2, ⋯, o|o| with o1 = o|o| = v0 and oiV, i = 2, ⋯, |o| − 1, if it is infeasible by Proposition 1 (1), then there are unserved demands along the route. Denote 2 ≤ i1 ≤ |o| − 1 as the minimum value satisfying C - max { 0 , max 2 ≤ i ≤ i 1 ∑ j = 2 i y o j } < - min { 0 , min 2 ≤ i ≤ i 1 ∑ j = 2 i y o j }, then the initial number of bikes on a vehicle z to achieve the minimal unserved demands can be computed as


4 Solution methodology

In this section, we first introduce the random forest to forecast demands for each station and then propose the ACO based algorithm for solving our proposed model BRP (10)–(18). Moreover, to reduce computational time, we discuss that our proposed algorithms can execute well with distributed computing.

4.1 Random forest for forecasting customer demands

Remind that V = {v1, v2, …, vn} is the set of n stations. Denote Z i = { ( x i ( t ) , y i ( t ) ) } t = 1 T , i ∈ V as the observational dataset for the station i with the size T, where x i ( t ) = ( x i 1 ( t ) , ⋯ , x i p ( t ) ) T is the p-dimensional vector of predictors at time t for the station i including the historical records and related information, such as weather and dates, and y i ( t ) represents demands at time t for the station i. For each station i, we fit a model on the dataset Z i and forecast its demands at time (T + 1).

As shown in literature, historical records, weather conditions, and date information have significant effects on customer demands [42]. In the case study of Hangzhou bike-sharing system in Section 6, we calculate the autocorrelation coefficients of the sequence { y i ( t ) , t = 1 , ⋯ , T } for iV and find the autocorrelation can be traced back to the eighth order, thus the historical demands of the first 8 days are included in the predictors. Moreover, we crawled the weather records such as the temperature, the dew point, the humidity, the air pressure, the wind speed, and whether it rained. We also add the day of the week and whether it is a holiday to the predictors as the date information.

Random forest is an integrated algorithm proposed by [2]. To evaluate the performance of our model, the dataset Z i is divided into a training set to build the model and a test set to evaluate the performance [43]. The random forest first builds R uncorrelated decision trees on the training set, each using a part of samples and a part of predictors. Since the response variable for this problem is continuous, we develop a regression tree in two steps below:

  • Step 1

    Divide the predictor space into several distinct and non-overlapping regions.

  • Step 2

    For observations that fall into the same region, we make the same prediction, which is simply the mean of the response values for the training observations in that region.

In Step 1, the regions are likely to have any shape. We choose to divide the predictor space into high-dimensional rectangles and use a top-down, greedy approach that is known as recursive binary splitting. For continuous variables, the first step is to find j and x ˜ that minimize


where y ¯ r 1 is the mean response for the training observations in { t : x i j ( t ) < x ˜ }, and y ¯ r 2 is the mean response for the training observations in { t : x i j ( t ) ≥ x ˜ }. For category variables, we find the partition of all classes that minimizes the sum of squared errors similar to (19). Next, we split one of the two previously identified regions and repeat the process until a stopping criterion is satisfied. After constructing all tress, the R regression trees are then combined to forecast without high variation and instability. The specific steps are shown in Algorithm 1.

Algorithm 1 Forecasting customer demands by the random forest

1. For r = 1, ⋯, R,

 (1) In the training set, the Bootstrap method is used to extract ntr samples to form a dataset I, where ntr is the sample size of the training set.

 (2) Randomly take p* from all p predictors. Based on the dataset I and the p* predictors, construct a regression tree Hr using the following two steps.

  a. Find j and x ˜ that minimize (19), and divide the space into two regions { t : x i j ( t ) < x ˜ } and { t : x i j ( t ) ≥ x ˜ }.

  b. Split { t : x i j ( t ) < x ˜ } or { t : x i j ( t ) ≥ x ˜ } recursively until the number of samples of each node reaching the minimum value nmin specified in advance.

2. Output the combined R trees.

3. For the new sample with predictor vector x i ( T + 1 ), the prediction result is


where H r ( x i ( T + 1 ) ) is the mean of the response values for the training observations in the region that x i ( T + 1 ) locates at on the r-th tree.

Due to the regression nature of demands forecasting, we recommend p* = p/3, nmin = 5 as suggested by [2]. Finally, we choose the root mean square error (RMSE) on the test set as the evaluation measure of the model, that is,


where y ^ i ( t ) denotes the predicting value and nte represents the sample size of the test set.

4.2 Improved ant colony optimization

Based on the ACO stated by [24], we propose the following algorithm to solve the BRP (10)–(18). Firstly, a new heuristic function is defined to incorporate unserved demands. Secondly, several route improvement strategies are considered including parallel route construction, l-opt local search, mutation operation, and ant-weight pheromone updating, which are inspired from the ACO for the VRP/VRPPD in literature [2830, 32, 33] with some modifications to adapt to the new model.

4.2.1 Parallel route construction

During the route construction, we abandon the traditional sequential strategy, where the vehicles leave the depot, construct routes, and return to the depot in order. Instead, we adopt a parallel strategy where all vehicles construct routes at the same time, inspired by [30]. Mazzeo and Loiseau [30] concluded that parallel construction has a better performance than the sequential construction in terms of the objective value.

Assume there are MK ants equally divided into M groups where M is a given parameter. Each ant represents a vehicle, and the K ants in the same group collaborate to complete rebalancing operations. In the beginning, all ants are assigned to the depot. The tabu table Tabuk,m of the k-th ant (k = 1, ⋯, K) in the m-th group (m = 1, ⋯, M) is initialized to an empty set. The pheromone concentration of each path is initialized to a constant τ0, where τ0 is a considerably small positive value. In each iteration, the K ants in the same group communicate with each other and search their routes at the same time. For each group, when all stations have been served, the rebalancing operation is completed and the objective value of the corresponding rebalancing scheme is computed. Thus, for M groups, there are M kinds of rebalancing schemes and the scheme with the smallest objective value is chosen as the best-found solution in this iteration.

For the m-th group, the current station of the k-th ant is denoted as ik,m. In the next step, we should determine which route to extend, denoted as knext and which station to serve, denoted as inext. Mazzeo and Loiseau [30] suggested firstly choosing the route that benefits the objective function most and then choosing the next station. In this paper, we consider a two-dimensional multinomial distribution of the pair (k, j) to allow more deeply search in the solution space. Suppose there are totally Λ pairs of (k, j). For each pair (k, j), there is a corresponding integer κ ∈ {1, 2, ⋯, Λ}. Given the probability of each pair as shown in (20), let p(κ) = p(k, j). Then we randomly generate an integer κnext ∈ {1, 2, ⋯, Λ} according to the probability distribution p(κ). Thus, the κnext-th pair is chosen as (knext, inext). For example, assume there are 3 pairs of (k, j), having the probability 1/2, 1/4, 1/4, respectively. Randomly generate an integer κnext ∈ {1, 2, 3} according to the probability distribution where p(κ = 1) = 1/2, p(κ = 2) = 1/4, p(κ = 3) = 1/4. Then we choose the κnext-th pair as (knext, inext). Specifically, the probability of (k, j) is defined as


where J k , m = { j : j ∈ V , ( i k , m , j ) ∈ A } - ∪ k ˜ = 1 K T a b u k ˜ , m represents the set of stations that the k-th ant of the m-th group is allowed to serve, T a b u k ˜ , m is the set of stations that the k ˜-th ant of the m-th group has visited, τ(ik,m, j), ϕ(ik,m, j) represent the pheromone concentration and the heuristic information on the edge (ik,m, j) respectively, α, β are parameters indicating the importance of the pheromone concentration and the heuristic information. Note that τ(ik,m, j) is specified in the later updating procedure, and ϕ(ik,m, j) is determined by the heuristic algorithm. Considering the slack variables, let

where ∑ i ∈ T a b u k , m | s i | + | s j | is the minimum value of unserved demands on the route of the k-th vehicle in the m-th group if the next station is chosen as j. It can be calculated according to the initial number of bikes on a vehicle z by Proposition 2. For clarity, we summarize the steps of parallel route construction in each iteration as Algorithm 2.

Algorithm 2 Parallel route construction

In each iteration, we construct routes as follows.

 1. Divide MK ants equally into M groups and assign all ants to the depot.

 2. For m = 1, 2, ⋯, M, k = 1, 2, ⋯, K, initialize Tabuk,m as an empty set.

 3. For each group m = 1, 2, ⋯, M, randomly generate a pair (knext, inext) with probability p(k, j) defined in (20). Then choose the ant knext to move to the station inext. Insert inext to Tabuknext,m.

 4. Repeat Step3 until all stations have been served for each group, that is, ∪ k = 1 K T a b u k , m = V for m = 1, 2, ⋯, M.

 5. For m = 1, 2, ⋯, M, move all ants from the last served station to the depot and compute the objective value of the corresponding scheme, denoted as G(m). The scheme with the minimum G(m) is the best found solution in this iteration.

Fig 1 shows an illustrative example. There are three stations labeled as “A”, “B” and “C”. The depot is represented by a star. Suppose M = 2, K = 2, where the first group is represented by a circle and the second group is represented by a triangle with the digit denoting the ant. In each iteration, all ants are assigned to the depot at the beginning. The construction procedure for two groups are independent which are shown in the first and the second rows, respectively. For the first group, we calculate the probability p(1, “A”), p(1, “B”), p(1, “C”), p(2, “A”), p(2, “B”), p(2, “C”) and generate a pair (knext, inext) randomly by these probabilities. Assuming (1, “A”) is generated, move the ① to the station “A”. Then we calculate p(1, “B”), p(1, “C”), p(2, “B”), p(2, “C”) and generate a pair (knext, inext) randomly. Assuming (2, “C”) is generated, we move the ② to the station “C”. Then we calculate (1, “B”),(2, “B”) and generate a pair (knext, inext) randomly. Assuming (2, “B”) is generated, we move the ② to the station “B”. So far, all stations have been served and the rebalancing operation has been completed for the first group. Move all ants to the depot and calculate the objective value G(1). A similar procedure is applied to the second group and the objective value obtained is denoted as G(2). The rebalancing scheme with a smaller objective value is chosen as the best found solution in this iteration.

An illustrative example of parallel route construction.
Fig. 1. An illustrative example of parallel route construction.

4.2.2 Route improvement strategies

After all the groups finish the route construction, several route improvement strategies are applied to the local best-found routes. The first strategy is the l-opt heuristic [28, 29, 32]. It is a local search procedure. In each step, l links of a current route are replaced by other l links, to test if an overall improvement in the objective function can be obtained. We consider 2-opt and 3-opt in this paper.

Another strategy is the mutation operation, an approach to improve the performance significantly, which is first applied to the ACO in [32]. The idea is to mutate the routes, producing a new solution that is not very far from the original one. We consider three mutation operators, insertion mutation, swap mutation, and cross mutation. For insertion mutation, we first choose a station and delete the station in its corresponding route. Then we add it to the end of another chosen route as the last served station before returning to the depot. Swap(n1,n2) mutation is to exchange n1 stations in one route with n2 stations in another route. We consider Swap(1,1), Swap(2,2), Swap(1,2) and Swap(2,3). Cross mutation is to choose two routes, cut each route into two parts and merge them crossly. After mutation operation, to ensure local optimality, the 2-opt heuristic proceeds for each route.

4.2.3 Ant-weight pheromone updating

Adopting the ant-weight strategy in [32], for ∀i, i′ ∈ N, the updating equation of the pheromone concentration is,


where q represents the volatilization rate of the pheromone concentration, Gop represents the best found value of the objective function obtained so far, G o p k represents the part that the k-th vehicle contributes to Gop, opk is the best found routes of the k-th vehicle, |⋅| represents the cardinality and Q is a constant. The ant-weight strategy updates the pheromone considering both global information Q/(KGop) and local information ( G o p k - d i i ′ ) / ( | o p k | · G o p k ), ensuring that the increment of pheromone is directly proportional to the quality of routes. Moreover, to prevent from local optima, we adopt the MAX-MIN strategy [44] where τ(i, i′), i, i′ ∈ N is bounded in [τmin, τmax] with

The specific steps of the ACO are shown in Algorithm 3.

Algorithm 3 Designing best found routes by the improved ACO

1. Initialization. Set τ0 as a considerably small positive value.

2. Parallel route construction. The MK ants construct routes by Algorithm 2. The rebalancing scheme with the minimum objective value is the local best found solution.

3. Route improvement. Several route improvement strategies including 2-opt, 3-opt and mutation operations are applied to the local best found solution.

4. Pheromone updating. The pheromone concentration between any two nodes is updated by (21).

5. Iteration. Repeat Steps 2-4 until the termination condition is met, which is set to a pre-defined time limitation in this paper.

In terms of computational complexity, the initialization requires O(n2), the parallel route construction requires O(n2M), and the pheromone updating requires O(n2), which are as same as the standard ACO proposed in [24]. For route improvement strategies, as discussed in [22], we have O(n2) for 2-opt, O(n3) for 3-opt, O(n) for the insertion mutation, O(n2) for each swap mutation and O(n2) for the cross mutation.

4.3 Distributed computing

In the significant data era, an algorithm is often characterized as being implemented in a distributed computing way. When forecasting customer demands, the random forest model we consider supports distributed computing. In Algorithm 1, the R regression trees can be constructed independently in different processors. In each processor, we first extract samples with replacement, called the Bootstrap resampling method, to form a dataset and then randomly take a part of predictors. Based on the extracting samples and predictors, a regression tree is formed in its processor. After the creation of all trees is finished, for a new sample, the forecast is first calculated using a single tree in each processor and then collected to take the average. The machine learning frameworks Mahout of the Hadoop platform and Mllib of the Spark platform have ready-made interfaces of the random forest algorithm. In this paper, we shall use Mahout for distributed computing of the random forest model.

The distributed strategies of the ACO have been discussed in the literature [4547], among which the most popular ones are the independent strategy, master-slave paradigm, fine-grained, and coarse-grained. The independent strategy executes parallel independent runs of the ACO [48]. In the master-slave paradigm, each ant in the slave finds a solution and sends it to the master. After all the slaves find a solution, the master updates the pheromone information and then sends them back to all slaves [49]. In the fine-grained model, the population of ants is assigned to a large number of tiny groups, maintained by different processors. The information is exchanged frequently among those processors after each iteration [50]. The coarse-grained model is different. The population of ants is divided into a few groups. Different processors exchange information after several fixed numbers of iterations [51]. For the ACO in Section 4.2, we use the fine-grained strategy to implement distributed computing as the route constructions of the M groups of ants do not interfere with each other in each iteration. The M groups of ants find solutions on different processors simultaneously. After all the groups of ants have finished the creation of routes, the results are collected, and the information among processors is exchanged. Then we continue to update the pheromone information. This distributed strategy makes the ACO computationally efficient.

5 Computational study

In this section, we evaluate our method on benchmarks in [4]. There are 65 instances in total collected from the web sites of 22 BSS. The number of stations varies from 13 to 116. Customer demands for each station are given in advance so that the forecasting procedure does not proceed for these instances, and we directly solve the best-found routes. The distance matrix between each pair of points is asymmetric, considering the one-way principle. More details about these benchmarks can be found in [4].

5.1 Computational results

Our algorithm was coded in R and run on an Intel Core i7-7500 CPU, 2.70 GHz, 8.00GB. By the number of stations, we divide the instances into three groups, small-size instances for the first 35 instances, medium-size instances for the next 9 instances and large-size instances for the last 21 instances. The stopping criteria are set to 180, 1800, and 3600 CPU seconds for small-size, medium-size and large-size instances, respectively.

For the ACO stated in Section 4.2, some parameters need to be determined. These parameters can be grouped into two categories; one is related to the algorithm itself, the other is linked to the problem studied, both having impacts on the computational results. According to [24, 32] and some preliminary experiments, the first category of parameters is set as M = n, α = 1, β = 5, q = 0.8, Q = 100, τ0 = 2Q/(3∑iV dv0,i) to achieve a satisfying convergence rate. The second category of parameters includes the capacity of vehicles, that is, C as shown in Tables 13, and the number of available vehicles which is set as K = ⌊∑iV yi/C⌋ + 1. Another key parameter is λ, the relative importance of the length of routes and customer demands, which is set in terms of the problem addressed. In Section 5.2, we discuss the effect of different values of λ and suggest to set λ as the 5% quantile of the distance {dv0, i, iV} for the small-size and medium-size instances and 0.5% quantile for the large-size instances, respectively.

Tab. 1. Computational results for small-size instances.
Computational results for small-size instances.
Tab. 2. Computational results for medium-size instances.
Computational results for medium-size instances.
Tab. 3. Computational results for large-size instances.
Computational results for large-size instances.

We compare our proposed method with the B&C method (the exact method for the BRP without unserved demands proposed in [4] using the branch-and-cut algorithm) and the DR method (the heuristic method for the BRP without unserved demands proposed in [22] using the destroy and repair algorithm) and best-known values (the best result for each instance among the above two existing methods). We propose to use the percentage of average cost saving per bike as a metric to evaluate the performance of our method on cost-reducing, where the definition will be given soon.

The average computational results over 5 runs are shown in Tables 1, 2 and 3. The following information is provided for each instance:

  • City (|N|, C): The name of the city together with the number of stations and the capacity of each vehicle.

  • ∑|yi|: The total demands for all stations.

  • LB: The lower bound of the best-found length of routes (in meters) without unserved demands provided by the branch-and-cut algorithm [4]. Note that the values could be of infeasible solutions.

  • UB: The best-known length of routes (in meters) without unserved demands, obtained from the two existing methods, the BRP [4] and the DR [22].

  • B&C: The best-found length of routes (in meters) without unserved demands for the B&C method [4].

  • DR: The best-found length of routes (in meters) without unserved demands for the DR method [22].

  • ACO %s: The percentage of unserved demands, calculated as 100 × ∑|si|/∑|yi|.

  • ACO GapL: The percentage of route length saving by our method compared with the lower bound, calculated as 100 × (LbfLB)/LB where Lbf is the best-found route length of our proposed method, which is not shown for save of space.

  • ACO GapU: The percentage of route length saving by our method compared with the best-known results, which can be calculated as 100 × (LbfUB)/UB. The smaller, the better.

  • ACO SaveU: The percentage of average cost saving per bike by our method compared with the best-known values, which can be calculated as SaveU = 100 × (AvecostAvecost0)/Avecost0, where Avecost0 = UB/∑|yi| is the average cost of each bike for the best-known values and Avecost = Lbf/(∑|yi| − ∑|si|) is the average cost of our method. The smaller, the better.

  • ACO SaveB: The percentage of average cost saving per bike by our method compared with the B&C method, calculated similarly as SaveU with Avecost0 being computed with best-found results of the B&C method rather than UB.

  • ACO SaveD: The percentage of average cost saving per bike by our method compared with the DR method, calculated similarly as SaveU with Avecost0 being computed with the best-found results of the DR method rather than UB.

As shown in Tables 1, 2 and 3, when unserved demands are allowed, for some instances, the length of best-found routes can be greatly reduced by sacrificing a small number of customer demands. Take the 3-rd instance Bari(13,10) as an example. The length of routes has been reduced by about 8.74% compared with the best-known value, leaving only 3.13% unserved. Also, the percentage of cost-saving achieves 5.79%. For instances that there are no unserved demands involved (%s = 0.00), the ACO can achieve results comparable to UB by presenting a small value of GapU. Avgs, Avgm and Avgl denote the average results of the small-size, medium-size and large-size instances, respectively. The average percentage of unserved demands for the small-size instances is only 0.76%, and the length of best-found routes is improved by 1.24%. The percentage of cost-saving is 0.50%. For medium-size instances, the average percentage of unserved demands is 0.52%, and the length of best-found routes is improved by 1.31% with the percentage of cost-saving being 0.81%, 0.81% and 0.96% for UB, B&C, and DR, respectively. For large-size instances, our method leads to more unserved demands and much shorter routes, especially when the capacity of vehicles is small. The average percentage of unserved demands is 10.30%, and the average percentage of reduction of route lengths achieves 12.58%. The percentage of cost-saving is 5.02%, 9.01% and 5.51% compared with UB, B&C, and DR, respectively.

Next, we discuss the effect of M on the proposed algorithm. Note that in each iteration, there are M groups of ants search routes and the best-found route among the M groups is chosen as the local solution in this iteration. When M increases, it is more probable to find better routes in each iteration while the running time for each iteration is also increasing. On the one hand, we prefer a deep search in each iteration. On another hand, the pheromone updating after each iteration contributes to the convergence of the ACO, and we prefer less computational time for each iteration. Thus, the choice of M is the trade-off of these two aspects. In the computational studies, we set M = n according to existing literature and some preliminary experiments. To explore the effect of M on the computational results, Fig 2 shows the number of iterations and the running time that the ACO first achieves the best-found solution of the sixteenth instance in the benchmark as an example. One can see when M increases, the number of iterations is decreasing significantly. Moreover, the running time is decreasing first and then increased slightly. It is reasonable since, for small M, it requires a large number of iterations to achieve the best-found solution, while for large M, the time cost for each iteration is considerably high. Thus, we recommend a moderate value of M to balance the number of iterations and the time cost for each iteration.

Effects of <i>M</i> for the instance LaSpezia(20,30).
Fig. 2. Effects of M for the instance LaSpezia(20,30).
(a) The number of iterations that the ACO first achieves the best found solution; (b) The running time that the ACO first achieves the best found solution.

5.2 Effect of unserved demands

In this subsection, we set λ as different values to discuss its impact on results. Other parameters are set as same as those in Section 5.1. For λ, we consider λ = 0.5%, 1%, 2%, 5% and 10% quantile of { d v 0 , i , i ∈ V } for all instances. The average computational results over 5 runs are shown in Tables 4, 5 and 6. The definitions of %s, GapU, and SaveU are as same as those in Section 5.1, representing the percentage of unserved demands, the percentage of route length saving by our method compared with the best-known values, and the percentage of average cost saving per bike by our method compared with the best-known values, respectively.

Tab. 4. Computational results for small-size instances with different values of λ.
Computational results for small-size instances with different values of λ.
Tab. 5. Computational results for medium-size instances with different values of λ.
Computational results for medium-size instances with different values of λ.
Tab. 6. Computational results for large-size instances with different values of λ.
Computational results for large-size instances with different values of λ.

From Tables 4, 5 and 6, we can conclude that the number of unserved demands becomes smaller as λ grows, while the length of routes becomes larger. Fig 3(a) shows the average percentage of unserved demands for small-size, medium-size, and large-size instances. It can be seen that the unserved demands are close to zero with λ increasing. Fig 3(b) shows the average percentage of cost-saving. For small-size instances, small values of λ lead to lots of unserved demands and poor values of cost-saving. The best cost-saving achieves at λ = 5% quantile. Similar conclusions can be found for medium-size instances. For large-size instances, it is better to set λ small to shorten routes length by scarifying some demands. The best value is achieved at λ = 0.5% quantile. That is what we use in Section 5.1.

(a) The average percentage of unserved demands for small-size, medium-size and large-size instances; (b) The average percentage of cost saving for small-size, medium-size and large-size instances.
Fig. 3. (a) The average percentage of unserved demands for small-size, medium-size and large-size instances; (b) The average percentage of cost saving for small-size, medium-size and large-size instances.

6 A case study: Hangzhou bike-sharing system

In this section, we provide a case study, Hangzhou bike-sharing system, to verify our proposed approach further. The dataset is provided by Hangzhou Public Transport Ltd. and is available as the supplementary material in S3 Appendix. We forecast customer demands by the random forest and solve best-found routes by the distributed ACO algorithm in Section 4. Moreover, we adopt actual distances instead of Euclidean distances. Thus, our method is of practical interests in real-world applications.

6.1 Data description

Hangzhou, one of the earliest cities to develop BSS in China, started a test operation on May 1, 2008, and officially operated on September 16, 2008. At the end of 2018, it has 3,354 bike stations and 86,800 bikes. The maximum rental volume reaches 473,300 bikes each day, and the total rental volume exceeds 737 million bikes. We select a subset of transaction data between August 9, 2013, and November 12, 2013, in Xiasha District, Hangzhou.

There are 151 bike stations in Xiasha. Fig 4(a) is a line chart of the average hourly volume of the rent (return). Users mainly use bikes from 6:00 to 22:00. The volume of the rent (return) per hour during 8:00-20:00 is in the range of [600, 1000], and the peak appears at two periods, that is, 7:00-8:00 and 17:00-18:00, when the amount reaches around 1400. Taking the peak in the morning (7:00-8:00) as an example, we use the method in Section 4 to forecast the demands during this period in the next morning and determine the operational scheme.

(a) Average volumes of the rent (return) per hour in Xiasha from August 9, 2013 to November 12, 2013; (b) The actual shortest driving paths in the opposite directions (solid) and the straight path (dashed) between the station #3669 and the station #3723.
Fig. 4. (a) Average volumes of the rent (return) per hour in Xiasha from August 9, 2013 to November 12, 2013; (b) The actual shortest driving paths in the opposite directions (solid) and the straight path (dashed) between the station #3669 and the station #3723.

We also need obtain the distance matrix D = (dij)(n+1)×(n+1). Note that the vehicles need to serve stations along the road, and the distance between the stations cannot be replaced by the Euclidean distance. Moreover, the distance matrix is asymmetric because of the one-way direction principle. The Gaode map (https://lbs.amap.com/api) provides an API interface for obtaining the driving distance between any two locations. Here we use Python to call the Gaode map web service API to get the shortest driving distance between stations. Taking the station #3669 and the station #3723 as examples, Fig 4(b) shows the differences between the shortest driving distance in the opposite directions and the simple Euclidean distance. It can be seen that they are quite different. Acquiring the shortest driving distance between 151 stations, we find the average is 6.04 kilometers, while the average Euclidean distance is only 3.25 kilometers. The shortest driving distance is much larger than the Euclidean distance.

6.2 Forecasting customer demands

Denote y i ( t ) as the demands during the peak period in the morning and x i ( t ) as the p-dimensional vector of predictors of the station i on the t-th day. Calculating the autocorrelation coefficients of the sequence { y i ( t ) , t = 1 , ⋯ , 96 } , i = 1 , ⋯ , 151, we find that the autocorrelation can be traced back to the 8-th order, thus the historical demands of the first 8 days of the station i are included in the predictors of the t-th day. Due to the time lag, the new dataset covers 88 days starting from the ninth day, August 17 to November 12. In addition to the demands of the first 8 days, we crawled the weather records of the corresponding period from the weather website (lishi.tianqi.com.), including the temperature (°C), the dew point (°C), the humidity (%), the air pressure (hundreds of Pascals), the wind speed (km/h) and whether it rained (binary variable). Moreover, we also add the day of the week and whether it is a holiday (binary variable) to the predictors as the date information. Table 7 gives a description of the predictors.

Tab. 7. Descriptions of predictors.
Descriptions of predictors.

To explore the interactive effects between factors, we invoke a maximal subtree analysis proposed by [52]. The result of the analysis is a matrix where entries on the diagonal μjj represent the minimal normalized depth of the j-th variable relative to the root node and entries on the triangle μ j 1 j 2 indicate the minimal normalized depth of the j2-th variable relative to the maximal subtree for the j1-th variable. Small entries on the diagonal indicate predictive variables and a small entry on the triangle is a sign of an interaction between the two variables. Fig 5 shows the average results over the 151 stations. One can see that entries on the triangle are close to 1. Thus there is no significant interaction between the variables. Besides, we find the historical data, whether it is holiday, the temperature, the dew point, the humidity, the air pressure, and the wind speed are important explanatory variables to forecast demands.

Average results of the maximal subtree analysis over 151 stations.
Fig. 5. Average results of the maximal subtree analysis over 151 stations.
Small entries on the diagonal indicate predictive variables and a small entry on the triangle is a sign of an interaction between the two variables.

We use the data of the first 67 days, from August 17 to October 22, { ( x i ( t ) ) T , y i ( t ) } t = 1 67 as a training set to fit the random forest model described in Algorithm 1, and the data of the last 21 days, from October 23 to November 12, as a test set to calculate the forecasting error. The boxplot of the RMSE of all stations is shown in Fig 6(a). We see that the RMSE is concentrated in the interval [0, 6], and only three stations have an RMSE of more than 10. The average RMSE of all stations is 4.41, and the median is 4.37. The results show that the random forest model has an excellent performance in forecasting demands.

(a) The RMSE of demands forecasting on the test set; (b) A part of the best found route (solid line) and the path (dashed line) to the nearest feasible station having bikes to be delivered.
Fig. 6. (a) The RMSE of demands forecasting on the test set; (b) A part of the best found route (solid line) and the path (dashed line) to the nearest feasible station having bikes to be delivered.

Finally, we apply the fitted random forest model to predict the demands during the peak period in the morning on November 13, 2013. During the peak period, the total demand (∑|yi|) is 1033. Five hundred fifty-five bikes need to be picked up from 68 stations. The number of bikes to be picked up falls in the interval [1, 26], with an average of 8.16 and a median of 8. Moreover, 478 bikes need to be delivered to 71 stations. The number of bikes to be delivered occurs in the interval [-22,-1] by an average -6.73 and a median -5. Moreover, demands forecasts of 12 stations are 0, and these stations will be removed before the route construction.

6.3 Finding the routing scheme

After obtaining the actual driving distance between stations and the customer demands of each station, we use the proposed algorithm to solve the optimization problem. Removing the 12 stations where the demands are predicted as 0, the number of stations that need to be served is 139.

The first category of parameters related to the algorithm itself is the same as those in Section 5.1. According to the information we obtain from the BSS company, the number of vehicles is set as K = 3, and the capacity of vehicles is C = 50. The depot is located at the same place as the station #3707, which is near the center of Xiasha district. We apply the proposed ACO algorithm to solve the BRP (10)–(18) with different values of λ. The results are shown in Table 8. It can be seen that the length of routes is increasing as λ grows, while the number of unserved demands is decreasing. When λ = 10%, the unserved demand is zero, and the best-found route length, denoted as Lub, is 285.06 km. For other values of λ, we give the results of percentage of unserved demands (%s), save of route length (GapU) and save of cost per bike (SaveU) compare with Lub, where there is no unserved demand.

Tab. 8. Results for BSS in Xiasha, Hangzhou.
Results for BSS in Xiasha, Hangzhou.

Since this is a large-size instance, we choose λ as the 0.5% quantile of { d v 0 , i , i ∈ V }, where the cost-saving achieves best. The length of routes is reduced by 4.58% with 1.65% unserved demands, compared with the routing scheme without unserved demands. The percentage of cost-saving achieves 2.99%. The proposed method can greatly reduce the length of routes by failing to meet a small part of customer demands.

To illustrate the effect of unserved demands, Fig 6(b) shows a part of the best-found route in the dashed line where the circle represents the station needs bikes to be delivered, and the triangle represents the station needs bikes to be picked up. “2 (43)” means the station requires two bikes to be picked up and after the vehicle serving this station, there are 43 bikes carried on the vehicle in the best found scheme. Similarly, “10 (50)” means the station requires ten bikes to be picked up, and after the vehicle serving this station, there are 50 bikes carried on the vehicle. The vehicle serves the station “2 (43)” first and then serve the station “10 (50)”, thus three bikes are unserved in the latter station because of the maximum capacity constraint. If the demands are required to satisfy strictly, the vehicle needs to go to a station having bikes to be delivered first and then go back to serve the station labeled as “10 (50)”. The solid line shows the path from the station labeled as “2 (43)” to the nearest available station having bikes to be delivered, which is labeled as “-12”, indicating the station requires 12 bikes to be delivered. It can be seen that allowing some demands unserved can make the operational scheme more flexible and shorten the length of routes. Fig 7 shows the best-found path for three vehicles in different grayscales and line types. The three vehicles start from the depot represented by the black circle and finally go back to it. The best found initial number of bikes is 3, 45, 1 given by Proposition 2, where each vehicle serves 55, 30, and 54 stations, respectively.

The best-found routes of three vehicles.
Fig. 7. The best-found routes of three vehicles.
The black circle marks the depot. The circle in gray represents the station needs bikes to be picked up. The triangle in gray indicates the station needs bikes to be delivered. The best-found routes for three vehicles are shown in different grayscales and line types.

7 Conclusions

In this paper, we investigated the bike-sharing rebalancing problem in BSS. Firstly, the random forest algorithm to forecast demands for each station is presented. Secondly, for the route construction task, a new model with unserved demands is proposed. It strikes a trade-off between the length of routes and customer demands fulfillment. A distributed ACO for solving the proposed model is carefully designed, together with several route improvement strategies. Computational results on benchmark instances show the advantage of the new method. Our model and algorithms are of practical interest in real-world applications. To this end, we provided a case study of BSS in Xiasha, Hangzhou.

There are several possible extensions. Firstly, vehicles can be heterogeneous in our model, and the depots can be multiple, which are easily extended in the future. Secondly, one may consider a strategy that allows vehicles to discover and skip the stations with few demands. This can lead to even much shorter routes. Also, we can consider the case where the number of stations to be served is uncertain and varies in different operational schemes. Furthermore, we can separate unserved pickup and delivery demands and thus develop a different variant of the current model.

Supporting information

S1 Appendix [pdf]
Proof of Proposition 1.

S2 Appendix [pdf]
Proof of Proposition 2.

S3 Appendix [zip]
Hangzhou dataset.


Zdroje

1. DeMaio P. Bike-sharing: History, Impacts, Models of Provision, and Future. Journal of Public Transportation. 2009;12(4):41–56. doi: 10.5038/2375-0901.12.4.3

2. Breiman L. Random Forests. Machine Learning. 2001;45(1):5–32. doi: 10.1023/A:1010933404324

3. Simchi-Levi D, Wu MX. Powering retailers’ digitization through analytics and automation. International Journal of Production Research. 2018;56(1-2):809–816. doi: 10.1080/00207543.2017.1404161

4. Dell’Amico M, Hadjicostantinou E, Iori M, Novellani S. The bike sharing rebalancing problem: Mathematical formulations and benchmark instances. Omega. 2014;45:7–19. doi: 10.1016/j.omega.2013.12.001

5. Berbeglia G, Cordeau JF, Gribkovskaia I, Laporte G. Static pickup and delivery problems: a classification scheme and survey. Top. 2007;15(1):1–31. doi: 10.1007/s11750-007-0015-2

6. Rixey R. Station-level forecasting of bikesharing ridership: Station Network Effects in Three US Systems. Transportation Research Record: Journal of the Transportation Research Board. 2013;(2387):46–55. doi: 10.3141/2387-06

7. Schuijbroek J, Hampshire RC, Van Hoeve WJ. Inventory rebalancing and vehicle routing in bike sharing systems. European Journal of Operational Research. 2017;257(3):992–1004. doi: 10.1016/j.ejor.2016.08.029

8. Hernández-Pérez H, Salazar-González JJ. A branch-and-cut algorithm for a traveling salesman problem with pickup and delivery. Discrete Applied Mathematics. 2004;145(1):126–139. doi: 10.1016/j.dam.2003.09.013

9. Sampaio AH, Urrutia S. New formulation and branch-and-cut algorithm for the pickup and delivery traveling salesman problem with multiple stacks. International Transactions in Operational Research. 2017;24(1-2):77–98. doi: 10.1111/itor.12261

10. Erdoğan G, Battarra M, Calvo RW. An exact algorithm for the static rebalancing problem arising in bicycle sharing systems. European Journal of Operational Research. 2015;245(3):667–679. doi: 10.1016/j.ejor.2015.03.043

11. Borgnat P, Abry P, Flandrin P, Robardet C, Rouquier JB, Fleury E. Shared bicycles in a city: A signal processing and data analysis perspective. Advances in Complex Systems. 2011;14(03):415–438. doi: 10.1142/S0219525911002950

12. Chemla D, Meunier F, Calvo RW. Bike sharing systems: Solving the static rebalancing problem. Discrete Optimization. 2013;10(2):120–146. doi: 10.1016/j.disopt.2012.11.005

13. Lenstra JK, Kan AHGR. Complexity of vehicle routing and scheduling problems. Networks. 1981;11(2):221–227. doi: 10.1002/net.3230110211

14. Bianchessi N, Righini G. Heuristic algorithms for the vehicle routing problem with simultaneous pick-up and delivery. Computers & Operations Research. 2007;34(2):578–594. doi: 10.1016/j.cor.2005.03.014

15. Koç Ç, Laporte G. Vehicle routing with backhauls: Review and research perspectives. Computers & Operations Research. 2018;91:79–91. doi: 10.1016/j.cor.2017.11.003

16. Kloimüllner C, Papazek P, Hu B, Raidl GR. A cluster-first route-second approach for balancing bicycle sharing systems. In: International Conference on Computer Aided Systems Theory. Springer; 2015. p. 439–446.

17. Torki A, Somhon S, Enkawa T. A competitive neural network algorithm for solving vehicle routing problem. Computers & Industrial Engineering. 1997;33(3):473–476. doi: 10.1016/S0360-8352(97)00171-X

18. Montané FAT, Galvao RD. A tabu search algorithm for the vehicle routing problem with simultaneous pick-up and delivery service. Computers & Operations Research. 2006;33(3):595–619. doi: 10.1016/j.cor.2004.07.009

19. Euchi J. Genetic scatter search algorithm to solve the one-commodity pickup and delivery vehicle routing problem. Journal of Modelling in Management. 2017;12(1):2–18. doi: 10.1108/JM2-10-2015-0077

20. Wang C, Mu D, Zhao F, Sutherland JW. A parallel simulated annealing method for the vehicle routing problem with simultaneous pickup–delivery and time windows. Computers & Industrial Engineering. 2015;83:111–122. doi: 10.1016/j.cie.2015.02.005

21. Ho SC, Szeto W. Solving a static repositioning problem in bike-sharing systems using iterated tabu search. Transportation Research Part E: Logistics and Transportation Review. 2014;69:180–198. doi: 10.1016/j.tre.2014.05.017

22. Dell’Amico M, Iori M, Novellani S, Stützle T. A destroy and repair algorithm for the bike sharing rebalancing problem. Computers & Operations Research. 2016;71:149–162. doi: 10.1016/j.cor.2016.01.011

23. Cruz F, Subramanian A, Bruck BP, Iori M. A heuristic algorithm for a single vehicle static bike sharing rebalancing problem. Computers & Operations Research. 2017;79:19–33. doi: 10.1016/j.cor.2016.09.025

24. Dorigo M, Maniezzo V, Colorni A. Ant System: Optimization by a Colony of Cooperating Agents. IEEE Transactions on Systems, Man, and Cybernetics, Part B. 1996;26(1):29–41. doi: 10.1109/3477.484436

25. Dorigo M, Gambardella LM. Ant Colony System: A Cooperative Learning Approach to the Traveling Salesman Problem. IEEE Transactions ON Evolutionary Computation. 1997;1(1):53–66. doi: 10.1109/4235.585892

26. Ciro GC, Dugardin F, Yalaoui F, Kelly R. Open shop scheduling problem with a multi-skills resource constraint: a genetic algorithm and an ant colony optimisation approach. International Journal of Production Research. 2016;54(16):4854–4881. doi: 10.1080/00207543.2015.1126371

27. Zhang S, Wong TN. Flexible job-shop scheduling/rescheduling in dynamic environment: a hybrid MAS/ACO approach. International Journal of Production Research. 2017;55(11):3173–3196. doi: 10.1080/00207543.2016.1267414

28. Bullnheimer B, Hartl RF, Strauss C. An improved Ant System algorithm for theVehicle Routing Problem. Annals of Operations Research. 1999;89:319–328. doi: 10.1023/A:1018940026670

29. Bell JE, McMullen PR. Ant colony optimization techniques for the vehicle routing problem. Advanced Engineering Informatics. 2004;18(1):41–48. doi: 10.1016/j.aei.2004.07.001

30. Mazzeo S, Loiseau I. An Ant Colony Algorithm for the Capacitated Vehicle Routing. Electronic Notes in Discrete Mathematics. 2004;18:181–186. doi: 10.1016/j.endm.2004.06.029

31. Lee CY, Lee ZJ, Lin SW, Ying KC. An enhanced ant colony optimization (EACO) applied to capacitated vehicle routing problem. Applied Intelligence. 2010;32(1):88–95. doi: 10.1007/s10489-008-0136-9

32. Yu B, Yang ZZ, Yao B. An improved ant colony optimization for vehicle routing problem. European journal of operational research. 2009;196(1):171–176. doi: 10.1016/j.ejor.2008.02.028

33. Gajpal Y, Abad P. An ant colony system (ACS) for vehicle routing problem with simultaneous delivery and pickup. Computers & Operations Research. 2009;36(12):3215–3223. doi: 10.1016/j.cor.2009.02.017

34. Falcon R, Li X, Nayak A, Stojmenovic I. The one-commodity traveling salesman problem with selective pickup and delivery: An ant colony approach. In: Evolutionary Computation (CEC), 2010 IEEE Congress on. IEEE; 2010. p. 1–8.

35. Çatay B. A new saving-based ant algorithm for the vehicle routing problem with simultaneous pickup and delivery. Expert Systems with Applications. 2010;37(10):6809–6817. doi: 10.1016/j.eswa.2010.03.045

36. Di Gaspero L, Rendl A, Urli T. A hybrid ACO+CP for balancing bicycle sharing systems. In: International Workshop on Hybrid Metaheuristics. Springer; 2013. p. 198–212.

37. Papazek P, Raidl GR, Rainer-Harbach M, Hu B. A PILOT/VND/GRASP hybrid for the static balancing of public bicycle sharing systems. In: International Conference on Computer Aided Systems Theory. Springer; 2013. p. 372–379.

38. Raviv T, Tzur M, Forma IA. Static repositioning in a bike-sharing system: models and solution approaches. EURO Journal on Transportation and Logistics. 2013;2(3):187–229. doi: 10.1007/s13676-012-0017-6

39. Doerner K, Gutjahr WJ, Hartl RF, Strauss C, Stummer C. Pareto ant colony optimization: A metaheuristic approach to multiobjective portfolio selection. Annals of operations research. 2004;131(1-4):79–99. doi: 10.1023/B:ANOR.0000039513.99038.c6

40. Alaya I, Solnon C, Ghedira K. Ant colony optimization for multi-objective optimization problems. In: Tools with Artificial Intelligence, 2007. ICTAI 2007. 19th IEEE International Conference on. vol. 1. IEEE; 2007. p. 450–457.

41. Hernández-Pérez H, Salazar-González JJ. Heuristics for the one-commodity pickup-and-delivery traveling salesman problem. Transportation Science. 2004;38(2):245–255. doi: 10.1287/trsc.1030.0086

42. Feng Y, Wang S. A forecast for bicycle rental demand based on random forests and multiple linear regression. In: 2017 IEEE/ACIS 16th International Conference on Computer and Information Science (ICIS). IEEE; 2017. p. 101–105.

43. Hastie T, Tibshirani R, Friedman J. The Elements of Statistical Learning. 2nd ed. New York, USA: Springer New York Inc.; 2001.

44. Stützle T, Hoos HH. MAX–MIN ant system. Future generation computer systems. 2000;16(8):889–914. doi: 10.1016/S0167-739X(00)00043-1

45. Ellabib I, Calamai P, Basir O. Exchange strategies for multiple Ant Colony System. Information Sciences. 2007;177(5):1248–1264. doi: 10.1016/j.ins.2006.09.016

46. Yu B, Yang ZZ, Xie JX. A parallel improved ant colony optimization for multi-depot vehicle routing problem. Journal of the Operational Research Society. 2011;62(1):183–188. doi: 10.1057/jors.2009.161

47. Zhou Y, He F, Hou N, Qiu Y. Parallel ant colony optimization on multi-core SIMD CPUs. Future Generation Computer Systems. 2018;79:473–487. doi: 10.1016/j.future.2017.09.073

48. Stützle T. Parallelization strategies for Ant Colony Optimization. In: Parallel Problem Solving from Nature—PPSN. Berlin, Heidelberg: Springer Berlin Heidelberg; 1998. p. 722–731.

49. Bullnheimer B, Kotsis G, Strauß C. Parallelization strategies for the ant system. In: High Performance Algorithms and Software in Nonlinear Optimization. Boston, MA: Springer US; 1998. p. 87–100.

50. Hadian A, Shahrivari S, Minaei-Bidgoli B. Fine-grained Parallel Ant Colony System for Shared-Memory Architectures. International Journal of Computer Applications. 2012;53(8):8–13. doi: 10.5120/8439-2223

51. Yang Z, Yu B, Cheng C. A Parallel Ant Colony Algorithm for Bus Network Optimization. Computer-Aided Civil and Infrastructure Engineering. 2006;22(1):44–55. doi: 10.1111/j.1467-8667.2006.00469.x

52. Ishwaran H, Kogalur UB, Gorodeski EZ, Minn AJ, Lauer MS. High-dimensional variable selection for survival data. Journal of the American Statistical Association. 2010;105(489):205–217. doi: 10.1198/jasa.2009.tm08622


Článek vyšel v časopise

PLOS One


2019 Číslo 12
Nejčtenější tento týden
Nejčtenější v tomto čísle
Kurzy

Zvyšte si kvalifikaci online z pohodlí domova

Svět praktické medicíny 1/2024 (znalostní test z časopisu)
nový kurz

Koncepce osteologické péče pro gynekology a praktické lékaře
Autoři: MUDr. František Šenk

Sekvenční léčba schizofrenie
Autoři: MUDr. Jana Hořínková

Hypertenze a hypercholesterolémie – synergický efekt léčby
Autoři: prof. MUDr. Hana Rosolová, DrSc.

Význam metforminu pro „udržitelnou“ terapii diabetu
Autoři: prof. MUDr. Milan Kvapil, CSc., MBA

Všechny kurzy
Kurzy Podcasty Doporučená témata Časopisy
Přihlášení
Zapomenuté heslo

Zadejte e-mailovou adresu, se kterou jste vytvářel(a) účet, budou Vám na ni zaslány informace k nastavení nového hesla.

Přihlášení

Nemáte účet?  Registrujte se

#ADS_BOTTOM_SCRIPTS#