You are currently viewing a new version of our website. To view the old version click .
Future Internet
  • Article
  • Open Access

2 April 2019

Ant Colony Optimization Task Scheduling Algorithm for SWIM Based on Load Balancing

and
1
School of Electrical and Information Engineering, Tianjin University, Tianjin 300072, China
2
School of Mechanical Engineering, Baicheng Normal University, Baicheng 137000, China
3
School of Electronic Information and Automation, Civil Aviation University of China, Tianjin 300300, China
*
Author to whom correspondence should be addressed.
This article belongs to the Special Issue Security and Privacy in Information and Communication Systems

Abstract

This paper focuses on the load imbalance problem in System Wide Information Management (SWIM) task scheduling. In order to meet the quality requirements of users for task completion, we studied large-scale network information system task scheduling methods. Combined with the traditional ant colony optimization (ACO) algorithm, using the hardware performance quality index and load standard deviation function of SWIM resource nodes to update the pheromone, a SWIM ant colony task scheduling algorithm based on load balancing (ACTS-LB) is presented in this paper. The experimental simulation results show that the ACTS-LB algorithm performance is better than the traditional min-min algorithm, ACO algorithm and particle swarm optimization (PSO) algorithm. It not only reduces the task execution time and improves the utilization of system resources, but also can maintain SWIM in a more load balanced state.

1. Introduction

In 1997, EUROCONTROL proposed the System Wide Information Management (SWIM) concept to the Federal Aviation Administration [1]. The International Civil Aviation Organization accepted this concept in 2002 [2]. The System Wide Information Management is a large-scale network system with high integration, which integrates and manages internal resources. SWIM, as an information sharing platform, provides a unified data transmission and exchange mechanism for different subsystems of civil aviation businesses. In order to achieve interoperability and consistency among the relevant units of civil aviation, as well as reduce the difficulty of integrated dispatching, this system enables data to be processed and integrated among independent systems. The basic idea of SWIM is to allow all air traffic participants, such as airports, air traffic control, airlines and other related civil aviation units, to share and exchange the latest information. Moreover, it ensures that information can be shared safely, effectively and in a timely manner. Thus, for accurate and timely cooperative decision-making, SWIM can greatly improve the predictability and effectiveness of decisions and meet the needs of civil aviation in terms of efficient and coordinated operation. The comparison of the traditional civil aviation mesh communication network and the SWIM bus communication structure is shown in Figure 1 [3].
Figure 1. Traditional mesh communication structure (left) and System Wide Information Management (SWIM) bus communication structure (right) comparison chart.
In order to improve SWIM resource utilization and sharing rate, it is necessary to solve the problem of system task scheduling. Because of the distribution, heterogeneity and autonomy of resources in a SWIM environment, SWIM task scheduling is more complex and difficult. As an algorithm for solving combinatorial optimization problems, the ant colony algorithm has the characteristics of parallelism and strong robustness. It can quickly obtain high-quality solutions and is very suitable for solving SWIM task scheduling problems.
Although the existing improved ant colony algorithm can improve the efficiency of task scheduling, it does not significantly improve the system load imbalance. This paper summarizes the existing network task scheduling technology in combination with SWIM’s own characteristics, on the basis of the classical ant colony algorithm, focusing on solving the problem of unbalanced resource load of service nodes in task scheduling. According to the hardware performance and load situation of service node update pheromones, the SWIM ant colony task scheduling algorithm based on load balancing (ACTS-LB) is proposed. This ACTS-LB algorithm can reduce task execution time and improve system load balancing, thus ensuring that the user’s task scheduling needs can be met as much as possible.
The remainder of the paper is structured as follows. We give some related works in Section 2. We introduce SWIM load balancing requirements and related definitions in Section 3. Section 4 presents the details of the ACTS-LB algorithm. We give the simulation results and analysis in Section 5 and conclude this paper in Section 6.

4. Ant Colony Optimization Algorithm Based on Load Balancing

4.1. Ant Colony Optimization Algorithm Analysis

Marco Dorigo first proposed an ant colony optimization algorithm in 1991 to achieve global optimization by simulating ant foraging behavior [18]. Suppose that P i j k ( t ) is the transition probability value of ant k from resource node i to resource node j at time t , using this value to select the next task to schedule. It is expressed by Equation (1).
P i j k ( t ) = { [ τ i j ( t ) ] α [ η i j ( t ) ] β i = 1 n [ τ i j ( t ) ] α [ η i j ( t ) ] β ,    j A 0 ,    Others
In Equation (1), τ i j ( t ) is the pheromone value for transferring resource node i to resource node j at time t ; η i j ( t ) is the heuristic function for transferring resource node i to resource node j at time t ; α is the information heuristic factor, which represents the relative importance of scheduling order; β is the expect heuristic factor, which represents the importance of heuristic information in ant selection scheduling sequence. The larger the value of β , the more likely the ants are to choose the scheduling sequence autonomously. Set A as the task that ant k can choose to perform in the next step.
According to Equation (1), the two key factors affecting the selection of resource nodes are τ i j ( t ) and η i j ( t ) . The improvement of these two factors is the difficulty and emphasis of the algorithm research. The ACTS-LB algorithm proposed in this paper is based on the standard ant colony algorithm to make corresponding improvements to τ i j ( t ) , and to update pheromone rules according to the node resource hardware performance and load balancing value.

4.2. Ant Colony Optimization Task Scheduling Algorithm Rule

In the actual SWIM, in order to achieve effective load balancing, the hardware performance of the node resources must be considered. First, reasonably assign tasks to each node according to the node processing capacity. The hardware performance is represented by two key indicators—computing power and system communication bandwidth of resource nodes. The hardware performance can be expressed by Equation (2).
P e r f o r m a n c e ( s j ) = ω 1 M i p ( s j ) + ω 2 B a n d w i t h ( s j ) .
In Equation (2), M i p ( s j ) represents the computing power of resource node s j , B a n d w i d t h ( s j ) represents the communication bandwidth of resource node s j , and ω 1 and ω 2 are constants.
In SWIM, the indicators of impact on resource nodes load are mainly composed of CPU utilization, memory utilization and system bandwidth occupancy. The load balancing value of SWIM resource nodes can be expressed by Equation (3).
L B j = δ 1 C ( s j ) + δ 2 M ( s j ) + δ 3 B ( s j ) .
In Equation (3), L B j represents the load balancing value of resource node s j ; C ( s j ) represents the CPU utilization rate of resource node s j ; M ( s j ) represents the memory usage of resource node s j ; B ( s j ) represents the bandwidth occupancy of resource node s j ; the coefficients δ 1 , δ 2 and δ 3 are constants, representing the weights of the three items, and δ 1 + δ 2 + δ 3 = 1 .
The average value of the load of all resource nodes in SWIM is expressed by Equation (4).
L A j = j = 1 m L B j m .
Then the resource node load standard deviation is expressed by Equation (5).
L S j = 1 m j = 1 m ( L B j L A j ) 2 .
By calculating the resource node load standard deviation L S in SWIM, it can reflect the system load balance degree. The larger the value of L S , the more unbalanced the system load. The smaller the value of L S , the more balanced the system load.
The ant colony algorithm pheromone update is expressed by Equation (6).
τ i j ( t + n ) = ( 1 μ ) τ i j ( t ) + Δ τ i j .
In Equation (6), μ is the information residual factor, 1 μ is the pheromone volatilization coefficient, which is employed to avoid the pheromone infinite accumulation. The μ value range is limited to 0 < μ < 1 . τ i j ( t + n ) is the pheromone concentration value on the path ( i , j ) at time t + n ; Δ τ i j is the pheromone increment value on the selected path ( i , j ), the initial time is Δ τ 0 = 0.
This paper uses the resource node hardware performance parameters and the system average load difference to update the pheromone τ i j , as expressed by Equation (7).
Δ τ i j = k = 1 m Δ τ i j k
Δ τ i j k = P e r f o r m a n c e ( s j ) ( 1 L S j ) = [ ω 1 M i p ( s j ) + ω 2 B a n d w i t h ( s j ) ] ( 1 L S j )
The heuristic function η i j in ant colony algorithm can be expressed by Equation (9).
η i j = 1 / e t i j
In order to maximize the utility, we must also consider the completion time factor of all tasks and try to minimize the task completion time. So, the expected completion time e t i j is used to calculate the heuristic function of the ant colony algorithm. The smaller the expected completion time, the larger the value of η i j and the higher the value of P i j k ( t ) . Thus, the degree of expectation that an ant will transfer from task t i to node s j is improved.
The pheromone update calculation in Equation (6) and heuristic function calculation in Equation (9) are substituted into Equation (1) to obtain the probability value that task t i is scheduled to resource node s j after the optimization of the ant colony algorithm. The computational complexity of the improved ACO algorithm presented in this paper is expressed as O ( N C max n 3 ) , where N C max is the number of cycles and n is the total number of tasks.

4.3. Ant Colony Task Scheduling Algorithm Optimization Process

The main idea is to select the best order of task scheduling through the ant colony algorithm, in which the scheduler can be regarded as an ant and the task scheduling process is compared with the ant foraging process. The pheromone is updated according to the hardware performance parameters of the system resource node and the system average load difference, and the expected time to complete all tasks is at a minimum. So, the expected completion time is used to calculate the heuristic function of the ant colony algorithm. Finally, a resource node with high pheromone concentration (high performance and low load) and minimum completion time is selected to handle the assigned task.
The research content of SWIM task scheduling is to map each task to resource set S in task set T , and to improve the task scheduling performance of the system on the premise of ensuring load balancing. The specific steps of the ant colony optimization task scheduling algorithm for SWIM based on load balancing are as follows. The flow chart of the algorithm is shown in Figure 2.
Figure 2. The flow chart of the ant colony optimization task scheduling algorithm based on load balancing.
Step 1: First, initialize the parameters in the algorithm. There are n tasks, m resources, the number of ants is q , the maximum number of cycles is t max , the initial time t is set to 0 (it can be assumed that there are n air flight planning missions and m navigation information resources in SWIM in this scenario).
Step 2: Make t = t + 1 . If t t max , after initializing the search table, all ants search the path from the initial position and stop searching when all tasks enter the search table.
Step 3: The hardware performance and load balance difference of the resource nodes are obtained by calculations, and the transferred probability P i j k ( t ) of each resource node is calculated by Equation (1), using P i j k ( t ) to select the perform task resource node.
Step 4: Update the search table and add the scheduling task to the search table. Use T a b u to record the set of tasks that ant k is currently passing through. Do not repeatedly select the path that has already passed as the next path.
Step 5: Update the pheromone of the ant colony algorithm according to Equation (6) and save the selected ant information with the best scheduling result.
Step 6: Repeat the above steps until t > t max , when the algorithm ends [19].

5. Experiment and Results Analysis

In the experiment, we referred to the SWIM structure that is already deployed by an air traffic administration of civil aviation, and we used the network simulation tool—NS-3 to verify the algorithm performance. The SWIM local task scheduling structure is shown in Figure 3.
Figure 3. SWIM task scheduling structure diagram.

5.1. Experimental Environment

The simulation experiment designed a topology model with one scheduler, four routers, six servers and eight clients. The node 1 is the scheduler, nodes 2–5 are the routers, nodes 6–11 are the servers, and nodes 12–19 are the clients. The link bandwidth between the client and the router, between the router and the scheduler, and between the router and the server is 150 Mbps, and the one-way delay of 10 ms. The simulation experiment test topology is shown in Figure 4.
Figure 4. Topology diagram of the SWIM task scheduling simulation experiment.

5.2. Experimental Parameter Settings

For the selection of parameters α , β and μ in the ant colony algorithm, there is no general method to determine their optimal combination. It should be noted that these parameters have a great impact on the performance of the ant colony algorithm. The smaller the value of μ , the smaller the influence of the previously searched path on the current search, making the algorithm difficult to converge. The larger the value of μ , the greater the influence of the previous search path on the current search, but this also increases the risk of falling into a local optimum. So, the μ value is generally set at 0.5. In the parameter selection experiment, the α and β values were set as μ = 0.5 and μ = 0.6. The simulation program was cycled 1000 times, the best result was selected as one experiment, taking the average value of 100 experiments. The parameters are substituted into the algorithm for the simulation test. The simulation experiment data are shown in Table 3.
Table 3. Parameter combination test results.
From Table 3, we can see that the optimal path is 568.10969, the running time is 39.86 s, μ = 0.6, α = 1.0253 and β = 2.7526. After the comparative study and multiple experiments, the parameters in this paper simulation experiment were set to α = 1.0, β = 2.7 and μ = 0.6. In the experiment, we found that when the same parameters were used for experiments of different scales, the results obtained were different. The weight parameters of the resource node load impact indicator in SWIM were set to δ 1 = 0.4, δ 2 = 0.3 and δ 3 = 0.3. The population size was 50, and the maximum number of iterations was 150. The simulation experiment test parameters are shown in Table 4.
Table 4. Simulation experiment test parameters.

5.3. Experimental Results and Analysis

In order to verify the effectiveness of the ACTS-LB algorithm designed in this paper, we tested the method using the same parameter configuration conditions but in two different situations: (1) The service nodes number is fixed, but scheduling tasks number is changed; (2) The scheduling tasks number is fixed, but the resource nodes number is changed. This was compared with the classic min-min algorithm [20], the ACO algorithm [21] and the PSO algorithm [10] in terms of transmission delay, task execution time and system load deviation value.
Experiment 1: The transmission delay comparison.
(1) Set the number of service nodes at m = 20 and the number of scheduling tasks at 10 < n < 200.
(2) Set the number of scheduling tasks at n = 100 and the number of service nodes at 5 < m < 50.
In the above two cases, by running the simulation software NS-3, the time delay data of the path was obtained by measuring different iterations of the ACTS-LB algorithm, min-min algorithm, ACO algorithm and PSO algorithm in the path finding process. The trace file obtained was counted and analyzed by the statistical analysis tool Wireshark. We obtained the total time delay value of the path after each iteration for each of the four algorithms, and the average value of each algorithm was obtained after each iteration was run 1000 times. The result was processed by MATLAB. The results are shown in Figure 5 and Figure 6.
Figure 5. The comparison of transmission delay under different scheduling tasks.
Figure 6. The comparison of transmission delay under different service nodes.
It can be seen from the experimental results in Figure 5 and Figure 6 that, at the beginning of ant colony routing, the four algorithms have large fluctuations in the total transmission delay of the path and have the same performance. After 100 iterations, the ACO algorithm basically leveled off and no longer changed, indicating that the ACO algorithm falls into premature convergence after the 100th iteration and could no longer search for a better path. When the number of tasks increased in the later period, the transmission delay variation of the min-min algorithm and PSO algorithm were not obvious. The ACTS-LB algorithm expanded the path space due to the optimized updating of pheromones, and the ants disturbed other paths so that the obtained paths were evenly distributed in the path space, ensuring that the ants had a stronger search ability and could find better quality transmission paths. Thus, it can be seen that the ACTS-LB algorithm can effectively solve the premature convergence problem of the ACO algorithm, providing ants with a stronger search ability and obtaining a better-quality path set.
Experiment 2: The task execution time span comparison.
(1) Set the number of service nodes at m = 20 and the number of scheduling tasks at 10 < n < 200.
(2) Set the number of scheduling tasks at n = 100 and the number of service nodes at 5 < m < 50.
In the above two cases, the task execution time of the ACTS-LB algorithm, min-min algorithm, ACO algorithm and PSO algorithm were tested in the context of task scheduling. The experimental results were sorted according to the data in NS-3. The four algorithms were executed 1000 times and averaged. The results of the task execution time span are shown in Figure 7 and Figure 8.
Figure 7. The comparison of task execution time span under different scheduling tasks.
Figure 8. The comparison of task execution time span under different service nodes.
It can be seen from the experimental results in Figure 7 that, in the initial stage of task scheduling, the task execution time of the ACTS-LB algorithm, min-min algorithm, ACO algorithm and PSO algorithm are basically the same. However, the task execution time of the ACTS-LB algorithm becomes smaller than that of the other three algorithms as the number of tasks increases. From the experimental results in Figure 8, it can also be seen that when the number service nodes increased, the ACTS-LB algorithm execution task scheduling time was less than that of the min-min algorithm, ACO algorithm and PSO algorithm. This shows that the method of calculating heuristic function by using expected execution time in the ACTS-LB algorithm plays an effective role in shortening the task execution time, and ants tend to choose the path with high pheromone concentration and minimum completion time. It can be concluded that the ACTS-LB algorithm can improve task execution efficiency and enable ants to have a stronger task scheduling ability.
Experiment 3: The system load deviation comparison.
(1) Set the number of service nodes at m = 20 and the number of scheduling tasks at 10 < n < 200.
(2) Set the number of scheduling tasks at n = 100 and the number of service nodes at 5 < m < 50.
In this paper, the load deviation value ( L D V ) of SWIM resource nodes is proposed as a reference standard for evaluating load balancing in task scheduling. The L D V definition can be expressed by Equation (10).
L D V = L B max L B min L A
The definition of the SWIM resource nodes load value L B is the same as in Equation (3); L B max and L B min are the maximum and minimum values of L B , respectively; L A is the average of all resource node loads. According to the experimental results, the load deviation values of the resource nodes during the task scheduling of the four algorithms were obtained. The results are shown in Figure 9 and Figure 10.
Figure 9. The comparison of system load deviation values under different scheduling tasks.
Figure 10. The comparison of system load deviation values under different service nodes.
It can be seen from Figure 9 and Figure 10, the L D V value of the ACTS-LB algorithm is smaller than that of the min-min algorithm, ACO algorithm and PSO algorithm, and the transformation becomes slower as the number of tasks increases. This is because in the ACTS-LB algorithm, pheromones are updated according to the hardware quality and the load balancing of node resources, so ants tend to aim for resource nodes with high pheromone concentrations (high performance and low load of resource nodes) when selecting the next task processing target node. It can be concluded that the ACTS-LB algorithm with L D V as the reference standard can achieve the goal of load balancing and improve the overall performance of task scheduling.

5.4. ACTS-LB Algorithm Shortcomings

The ACTS-LB algorithm, however, can still be further improved, which requires further optimization and in-depth study in the following aspects:
(1) Because the ant colony algorithm has a slow convergence rate in the initial stage, it can easily fall into the local optimum. Therefore, the ACTS-LB algorithm also has some shortcomings. In the subsequent algorithm improvement, we will draw on other heuristic algorithm advantages, such as the simulated annealing (SA) algorithm and genetic algorithm, etc. The comprehensive application of these algorithms’ different characteristics, and the fact that their advantages and disadvantages complement each other, will aid us in improving the algorithm’s overall task scheduling performance.
(2) The ant colony algorithm parameter setting is very important. If it is not set properly, it will slow down the solving speed and affect the quality of the results. In the next SWIM task scheduling study, we will consider the task dynamics and the service quality of the system. We plan to dynamically adjust the corresponding parameters in the algorithm and study the impact of ant colony parameters and local search methods on the overall performance of the system, so as to continuously improve and perfect the task scheduling strategy.

6. Conclusions

In this paper, we proposed the SWIM ant colony optimization task scheduling algorithm based on load balancing (ACTS-LB). By improved the traditional ant colony optimization algorithm, the hardware performance quality index and load standard deviation function of resource nodes in SWIM were comprehensively adopted to improve the pheromone updating strategy of the algorithm. The ACTS-LB algorithm improved the defect that pheromone updating can easily fall into the local optimum and ensures that the system’s load balancing requirements were maximized while the scheduling task was effectively completed. The experimental simulation using NS-3 showed that the ACTS-LB algorithm performs better than the classic min-min algorithm, ACO algorithm and PSO algorithm, as it can maintain SWIM in a balanced load state and improved the efficiency of system task scheduling and execution. However, in this paper, we presented the ACTS-LB algorithm, which was tested only in a simulated SWIM environment. The algorithm had not yet been tested in an actual SWIM application environment and the experimental results were not convincing. Next, in order to further verify the validity of the proposed ACTS-LB algorithm, we will try to simulate the algorithm in a real SWIM environment.

Author Contributions

G.L. contributed to presenting the ACTS-LB algorithm, performed evaluating experiments and was the main contributor to the manuscript; Z.W. contributed to proposing the evaluating methodology and helped in the article processing.

Funding

This work was funded by the National Natural Science Foundation for Youth of China (61601467). The Major Program of Natural Science Foundation of Tianjin (17JCZDJC30900) and the Fundamental Research Funds for the Central Universities of China (3122018D007).

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Stephens, B. System-Wide Information Management (SWIM) Demonstration Security Architecture. In Proceedings of the 2006 IEEE/AIAA 25th Digital Avionics Systems Conference, Portland, OR, USA, 15–19 October 2006; pp. 1–12. [Google Scholar]
  2. Crescenzo, D.D.; Strano, A.; Trausmuth, G. SWIM: A Next Generation ATM Information Bus-The SWIM-SUIT Prototype. In Proceedings of the 2010 14th IEEE International Enterprise Distributed Object Computing Conference Workshops, Vitoria, Brazil, 25–29 October 2010; pp. 41–46. [Google Scholar]
  3. Federal Aviation Administration (FAA)-SWIM Program Overview. Available online: https://www.faa.gov/air_traffic/technology/swim/overview/ (accessed on 16 March 2019).
  4. Baatar, D.; Krishnamoorthy, M.; Ernst, A.T. A Triplet-Based exact method for the shift minimisation personnel task scheduling problem. In Proceedings of the 23rd Annual European Symposium on Algorithms (ESA) as Part of ALGO Conference, Patras, Greece, 14–16 September 2015; pp. 59–70. [Google Scholar]
  5. Domenico, C.; Steven, H. A Hash-Tree Based Approach for a Totally Distributed Track Oriented Multi Hypothesis Tracker. In Proceedings of the 2012 IEEE Aerospace Conference, Big Sky, MT, USA, 3–10 March 2012; pp. 1–9. [Google Scholar]
  6. Romano, G.; Drago, A.; Ciuonzo, D. Sub-optimal importance sampling for fast simulation of linear block codes over BSC channels. In Proceedings of the 2011 8th International Symposium on Wireless Communication Systems, ISWCS, Aachen, Germany, 6–9 November 2011; pp. 141–145. [Google Scholar]
  7. Liu, C.; Yang, W. A Multi-Objective Task Scheduling Based on Genetic and Particle Swarm Optimization Algorithm for Cloud Computing. Comput. Tech. Dev. 2017, 27, 56–59. (In Chinese) [Google Scholar] [CrossRef]
  8. Gan, G.N.; Huang, T.L.; Gao, S. Genetic Simulated Annealing Algorithm for Task Scheduling based on Cloud Computing Environment. In Proceedings of the 2010 International Conference on Intelligent Computing and Integrated Systems, Guilin, China, 22–24 October 2010; pp. 60–63. [Google Scholar]
  9. Babukarthik, R.G.; Raju, R.; Dhavachelvan, P. Hybrid Algorithm for Job Scheduling: Combining the Benefits of ACO and Cuckoo Search. Adv. Intell. Syst. Comput. 2013, 177, 479–490. [Google Scholar]
  10. Tong, Z.; Chen, H.; Chen, M.; Mei, J.; Liu, H. A hybrid biogeography-based optimization algorithm for task scheduling in cloud computing. J. Comput. Eng. Sci. 2018, 40, 765–772. [Google Scholar]
  11. Wang, X.; Wang, R.; Jiang, H. Research on Cloud Task Scheduling with Improved Greedy Algorithm. Microelectr. Comput. 2018, 35, 109–113. [Google Scholar]
  12. Xavier, V.M.A.; Annadurai, S. Chaotic social spider algorithm for load balance aware task scheduling in cloud computing. Clust. Comput. 2018, 9, 1–11. [Google Scholar]
  13. Zhao, M.; Li, S. Load Balancing of Task Scheduling Based on Ant Colony Optimization in Cloud Computing Environment. Electr. Design Eng. 2016, 24, 30–33. [Google Scholar]
  14. Jiang, W.; Liu, Z.; Qiu, Q.; Huang, Q. A virtual machine load balancing algorithm in cloud environment. J. Fuzhou Univ. (Natural Science Edition) 2018, 46, 451–457. [Google Scholar]
  15. Chen, J.; Xu, J.; Hui, B. Cloud Computing Resource Scheduling based on Improved Semantic Search Engine. In Proceedings of the 2nd International Conference on Intelligent Information Processing, Bangkok, Thailand, 17–18 July 2017; pp. 237–243. [Google Scholar]
  16. Ren, J.; Huang, Y.; Zhong, X. Cloud task scheduling improved algorithm based on the genetic algorithm. J. Jiangxi Univ. Sci. Tech. 2018, 39, 90–94. [Google Scholar]
  17. Huangfu, X.P. Research on the Method of Novel Architecture and Load Balancing for Data Center Networks in the Integrated Information Infrastructure. Ph.D. Thesis, Graduate School of National University of Defense Technology, Changsha, China, 2014. (In Chinese). [Google Scholar]
  18. Dorigo, M.; Gambardella, L.M. Ant colony system: A cooperative learning approach to the traveling salesman problem. IEEE Trans. Evolut. Comput. 1997, 1, 53–66. [Google Scholar] [CrossRef]
  19. Hua, D. Research on Grid Resources Scheduling Based on QoS-Ant Colony Optimization Algorithm. Ph.D. Thesis, School of Computer and Software, Nanjing University of Information Science & Technology, Nanjing, China, 2011. (In Chinese). [Google Scholar]
  20. Chauhan, S.S.; Joshi, R.C. A weighted mean time Min-Min Max-Min selective scheduling strategy for independent tasks on Grid. In Proceedings of the 2010 IEEE 2nd International Advance Computing Conference (IACC), Patiala, India, 19–20 February 2010; pp. 4–9. [Google Scholar]
  21. Lu, X.; Gu, Z. A load-adapative cloud resource scheduling model based on ant colony algorithm. In Proceedings of the IEEE International Conference on Cloud Computing and Intelligence Systems, Beijing, China, 15–17 September 2011; pp. 296–300. [Google Scholar]

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.