1. Introduction
The Distributed Constraint Optimization Problems (DCOPs) [1,2,3] are a powerful framework for multi-agent modeling. In DCOPs, multiple agents communicate directly or indirectly and coordinate their value assignments to optimize the aggregate constraint utility. DCOPs have been widely applied in practical problems such as meeting scheduling [4,5,6], smart home [7,8], sensor networks [9,10], multi-robot coordination [11,12], and path coordination [13]. Simultaneously, some important improvements and extensions have been proposed for DCOPs, such as the improving advanced methods [14,15,16,17,18], and the extensions of Asymmetric DCOPs [19,20,21,22] and Dynamic DCOPs [23,24].
The DCOP algorithms are simply classified as complete and incomplete algorithms. The complete algorithms aim to provide a global optimum solution, but the computational and memory overheads are expensive, such as Synchronous Branch-and-Bound (SyncBB) [25], Asynchronous Distributed OPTimization (ADOPT) [2], Distributed Pseudo-tree Optimization Procedure (DPOP) [3,26], and Pseudo-trees-Forward Bounding (PT-FB) [27]. Conversely, the incomplete algorithms obtain an approximate solution by reducing computational and memory overheads, such as Distributed Stochastic Algorithm (DSA) [28], Max-Sum (MS) [9,16], Maximum Gain Message (MGM) [29], ACO_DCOP [30], and LSGA [31].
Although the DCOP framework plays an important role in applications of discrete variables (e.g., action sets of machines in the smart home), they make less sense in applications of continuous variables (e.g., positions of robots in the mobile network). Therefore, Stranders et al. [32] proposed the Continuous DCOP (C-DCOP) framework to extend DCOPs whose variables are continuous and the constraint utilities are functional forms. The C-DOCP algorithms include Continuous MS (CMS) [32], Hybrid CMS (HCMS) [33], Bayesian DPOP (B-DPOP) [34], Particle Swarm Based Continuous DCOP (PCD) [35], Exact Continuous DPOP (EC-DCOP) [36] and extensions (Approximate Continuous DPOP (AC-DPOP), Clustered AC-DPOP (CAC-DPOP), Continuous DSA (C-DSA)), Continuous Cooperative Constraint Approximation (C-CoCoA) [37], and Particle Swarm with Local Decision Based Continuous DCOP (PCD-LD) [38].
Firstly, CMS and HCMS extend discrete MS, where CMS approximates utility functions to piecewise linear functions and HCMS introduces a continuous nonlinear optimization method. However, they are both limited by the forms of utility functions. Secondly, B-DPOP combines the Bayesian optimization with DPOP, but it does not guarantee an intermediate solution quality before convergence. Further, EC-DPOP provides the global optimum solution. AC-DPOP and CAC-DPOP provide approximate solutions and reduce communication overheads by limiting the size of messages. Nevertheless, they both incur exponential memory and computational overheads. Then, PCD introduces Particle Swarm Optimization (PSO) in C-DCOPs to reduce the computational and memory overhead. PCD-LD extends PCD to balance solution quality with memory overhead. Finally, C-CoCoA and C-DSA provide two low-cost methods to solve C-DCOPs, but none of the two algorithms have anytime properties.
Based on the above analysis, we propose two population-based approaches by using basic mathematical operators such as addition and multiplication only to solve C-DCOPs, Population-based Local Search Algorithm (PLSA), and the extension, Population-based Global Search Algorithm (PGSA). The proposed PLSA and PGSA can solve problems with any form of utility functions and outperform gradient-based methods in terms of computational and memory overhead [35].
In the previous paper [39], the idea of population-based local search is applied to centralized optimization problems and exhibits excellent performance. Specifically, the algorithm (i) uses some elite solutions and useful information to guide local search; and (ii) systematically updates the population. In this paper, we customize a population-based local search approach for C-DCOPs, which is more suitable for distributed optimization. Our motivations and contributions to PLSA can be summarized as follows:
Motivation: The pseudo-tree is a communication structure commonly used in C-DCOP algorithms. The root agent can be aware of the aggregate utility according to the utility passing between all agents. We have two worries: (i) the root agent requires more computational and memory overhead. (ii) The privacy violation during utility passing, even if the privacy violation is minor [40].
Contribution: Therefore, we use the graph structure in PLSA. The agent only passes its value assignments (instead of utilities received from other neighbors) to neighbors and optimizes the sum of local utilities through the neighbors’ value assignments. An important benefit is that each agent can guarantee equal overhead and privacy.
Motivation: In distributed optimization, since none of the agents are aware of the quality of the aggregate utilities, the quality of aggregate utility fluctuates with the changes in value assignments. However, the sum of local utilities affects aggregate utility, so we consider that local stability promotes global stability to a certain extent.
Contribution: Hence, we propose a STATE mechanism for each agent to control the changes in value assignments. Specifically, each agent changes its state (updates or holds values) based on historical values, which can make the current agent terminate the update early and keep local stability.
Motivation: Falling into the local optimum is always an awkward problem in approximate optimization algorithms, which limits the exploration ability of the algorithm. Similarly, PLSA also faces the problem of falling into the local optimum as an approximate optimization algorithm.
Contribution: With a simple idea, we introduce a classical mutation operator to jump out of the local optimum. The agent resets each value with probability to a random value from its domain.
PGSA is an extension of PLSA, which considers introducing Breadth First Search (BFS) pseudo-tree technology to guarantee its anytime property while extending local search to global search. Extensive comparative experiments on three randomly generated benchmark problems show that PGSA can improve the solution quality of PLSA, and our algorithms are superior to the state-of-the-art C-DCOP algorithms in terms of solution quality.
The remainder of this paper is organized as follows. Firstly, we introduce the background of the problem, the distributed population, and the BFS pseudo-tree in Section 2. In Section 3, we present the details of our algorithms. Section 4 presents the theoretical analysis. Then, Section 5 exhibits the comparative experiments of our algorithms and the state-of-the-art C-DCOP algorithms. Finally, we give the conclusion and future avenues of research in Section 6.
2. Background
In this section, we firstly introduce the DCOP and C-DCOP framework, which are the necessary background to this paper. Then, we describe the distributed population method, which is the basis of our algorithms. Finally, we present the relevant definitions of the BFS pseudo-tree.
2.1. Distributed Constraint Optimization Problems
A Distributed Constraint Optimization Problem (DCOP) can be defined as a tuple , where
-
is a set of agents; an agent can control one or more variables.
-
is a set of discrete variables; each variable is controlled by one of the agents .
-
is a set of discrete domains; each variable takes value from the domain .
-
is a set of utility functions; each specifies the utility function assigned to each combination of , where the arity of the utility function is k. We consider that all utility functions are binary (thus ) in this paper.
-
is a variable-to-agent mapping function that associates each variable to one agent . In this paper, we assume one agent controls only one variable (, thus the terms “agent” and “variable” could be used interchangeably).
The solution of a DCOP is an assignment combination to all variables that minimize (we are going to consider the minimization in this paper) the aggregate utility, as shown in Equation (1).
(1)
2.2. Continuous Distributed Constraint Optimization Problems
Similarly, a Continuous DCOP (C-DCOP) is a tuple , where , , and are the same as DCOP. The set of variables and the set of domains are defined as follows:
is the set of continuous variables and each variable is controlled by one of the agents .
is the set of continuous domains and each continuous variable takes any value from the domain , where and represent the lower and upper bounds of the domain, respectively.
The goal of a C-DCOP is the same as Equation (1). Figure 1 shows a simple example of a C-DCOP, where Figure 1a shows a constraint graph with four variables, and each edge represents a utility function defined in Figure 1b. The domain of variable is .
2.3. Distributed Population
The distributed population is an extension of the traditional population, which has become a basic technology in the population-based algorithm for DCOPs and C-DCOPs [30,31,35,38] in recent years. The distributed population is held collaboratively by all agents. Table 1 shows a distributed population of n agents and K solutions, the agent holds one dimension of each solution, and multiple solutions are composed of a population, denoted as S.
One of the solutions, solution , represents an assignment combination of all agents. For solution k, we use to denote the variable held by agent , and we define that represents the sum of local utilities of agent , calculated by Equation (2).
(2)
2.4. Breadth First Search Pseudo-tree
The Breadth First Search (BFS) pseudo-tree is a commonly used communication structure for DCOPs and C-DCOPs [3,26,27,35,36,38]. The characteristics of the BFS pseudo-tree are multi-branch parallel computing, short communication path, and time. We briefly present the relevant definitions of the BFS pseudo-tree, and the details can be found in reference [41].
Figure 2 shows an example of a BFS pseudo-tree using the constraint graph in Figure 1a. Some definitions of the BFS pseudo-tree are given as follows:
—the tree edge, which connects and (e.g., is a tree edge in Figure 2).
—the cross-edge, which directly connects node and in two different branches (e.g., is a cross-edge in Figure 2).
— the parent of node , the single higher node directly connecting through a tree edge (e.g., in Figure 2).
— the set of children of node , the lower nodes directly connecting through tree edges (e.g., in Figure 2).
—the set of neighbors of node , the neighboring nodes that directly connect (e.g., in Figure 2).
—the set of pseudo-neighbors of node , the neighboring nodes that directly connect through cross-edge edges (e.g., in Figure 2).
The BFS pseudo-tree is used for utility aggregation in distributed algorithms, each node sends the sum of local utilities to the root node according to the parent node . Finally, the root node is aware of the aggregate utility.
3. Our Algorithms
In this section, we describe the details of the Population-based Local Search Algorithm (PLSA), which is a fully decentralized C-DCOP algorithm. In addition, we introduce a Population-based Global Search Algorithm (PGSA) based on PLSA.
3.1. Population-Based Local Search Algorithm
The PLSA consists of three phases: Initialization, Decision, and Update phases; the details of the algorithm can be found in Algorithm 1.
The Initialization phase: Firstly, PLSA initializes some parameters and constructs a distributed population. Specifically, K represents the number of solutions, and T is the termination parameter, which is the threshold of the agent state change. and represent the learning rate and mutation probability, respectively. Secondly, each agent sets the to 0 and the STATE to “ACTIVE”. The records the change of the best value, and the STATE determines whether the value assignments are updated. In addition, each agent initializes the current dimension of each solution to a random value from its domain. Finally, the agent sends the values to neighbors (Algorithm 1: Lines 3–10).
The Decision phase: When receiving the value assignments sent by the neighbor , the agent calculates the sum of local utilities of each solution according to Equation (2) (Algorithm 1: Lines 12–14). In addition, agent calculates the index of the best value and outputs , which is the value that minimizes the sum of local utilities (Algorithm 1: Lines 15–16).
The Update phase: This phase mainly includes state updates and value updates. On the one hand, the agent compares the best value of the current and the previous iteration. The is increased by one if the two values are equal, otherwise, the is set to zero. Further, if , the agent changes the STATE to “Hold” (Algorithm 1: Lines 21–26), where t represents the number of iterations. On the other hand, the agent updates each value and sends it to neighbors . Specifically, if the current STATE is “Hold”, each value is updated to . Otherwise, the agent generates a random number and is assigned a random value from its domain if . On the contrary, is updated from a linear combination of the two best and worst values, as shown in Equation (3) (Algorithm 1: Lines 28–35).
Algorithm 1: Population-based Local Search Algorithm |
In general, the best solution has good exploitation ability, but it may fall into a local optimum and reduce the exploration ability. Conversely, the worst solution has better exploration ability. Therefore, we consider the weighted combination in Equation (3), such that each solution learns the exploration and exploitation from other solutions, where is a value that makes the sum of local utilities the second smallest, and is a value that maximizes the sum of local utilities.
(3)
3.2. Population-Based Global Search Algorithm
Similar to PLSA, PGSA, represented by Algorithm 2, includes three phases: Initialization, Decision, and Update phases.
The Initialization phase: PGSA starts the after constructing a BFS pseudo-tree and assigning to , where records the best aggregate utility. In addition, each agent sets the to complete the assignment combination of the best aggregate utility (Algorithm 2: Lines 1–4).
The Decision phase: Similarly, the agent calculates the sum of local utilities with neighbors (Algorithm 2: Lines 6–8). However, the agent in PSGA sends the sum of local utilities to the parent agent . Each agent except the root agent does the same thing; the agent waits to receive the sum of local utilities of children agents and adds it to its sum of the local utilities (Algorithm 2: Lines 9–15). Since the agents of each layer pass the sum of local utilities up the pseudo-tree and the utility function represented by each edge is calculated twice by the corresponding two agents, the root agent calculates the aggregate utility of each solution by Equation (4). The root agent compares the minimum aggregate utility with . If the minimum aggregate utility is less than , the update is assigned the “Assign” and sent by the root agent to neighbors (Algorithm 2: Lines 27–37).
(4)
The Update phase: The agent updates according to the value of update (Algorithm 2: Lines 20–21). In addition, each agent updates its state and value assignments. As an extension of PLSA, we consider the same weighted combination method to update the solution, but we extend the local search to the global search, as shown in Equation (5), where the and are the solutions with minimum and maximum aggregate utility, respectively. And the is the solution with the second smallest aggregate utility.
(5)
Algorithm 2: Population-based Global Search Algorithm |
4. Theoretical Analysis
In this section, we prove the anytime property of PGSA and provide some theoretical properties of PLSA and PGSA in terms of communication, computation, and memory. We assume that the graph structure is a binary constraint graph , the number of nodes is , and the number of edges of the constraint graph is . Since the agent calculates the sum of local utilities (Algorithm 1: Line 14 and Algorithm 2: Line 8) or adds the sum of utilities of children agents (Algorithm 2: Line 14) in the decision phase, and the agent updates its value assignments in the update phase (Algorithm 1: Line 18 and Algorithm 2: Line 23), we define one iteration as the entire process of the decision and update phase.
PGSA is an anytime algorithm.
In PGSA, the root agent tracks the aggregate utility through a pseudo-tree. We assume that the and the aggregate utility at the m iterations are and , respectively. According to Algorithm 2, Line 32-33, the . Only the root agent finds the aggregate utility at the iterations and , is assigned the value of , the . Otherwise, maintains the best aggregate utility so far. In other words, and the aggregate utility decreases monotonically as the number of iterations increases. Therefore, the PGSA is an anytime algorithm. □
The total number of messages of PLSA and PGSA with t iterations are and , respectively.
In one iteration of PLSA, for every constraint , the agent sends a message to to share value assignments and vice versa. So there are two messages per edge, and thus the number of messages is , where is the number of constraints and also the number of edges. Therefore, the total number of messages of PLSA with t iterations is . Similarly, the agent in PGSA sends a message to and receives a message from . In addition, the agent sends a message (the sum of utilities) to the parent agent (Algorithm 2: Line 15) and Messages to children agents (Algorithm 2: Line 24). Hence, the total number of messages of PGSA with t iterations is . □
In one iteration, the message sizes of PLSA and PGSA are, respectively, K and , where K is the number of solutions.
In PLSA, the agent sends a message containing K values to its neighbors in one iteration. Therefore, the message size of PLSA in one iteration is K, where K is the number of solutions. In PGSA, the agent sends three types of messages: the values assignments, the sum of local utilities, and Messages, whose message sizes are K, K, and , respectively. Hence, the message size of PGSA in one iteration is . □
In one iteration, the computational overhead of one agent in PLSA and PGSA are, respectively, and , where K is the number of solutions, is the number of neighbors, and is the number of children agents in the BFS pseudo-tree. Further, the overall computational overheads of PLSA and PGSA in one iteration are and , respectively.
We define the number of neighbors of one agent is . In PLSA, each agent calculates the sum of local utilities with its neighbors and updates the value assignments of K solutions. The computational overhead of one agent in one iteration is . Since , therefore, the overall computational overhead of PLSA is . Because BFS pseudo-tree is used in PGSA, we define the number of children of one agent as . In PGSA, one agent not only calculates the sum of local utilities and updates value assignments but also adds the sum of utilities of children agents. Hence, the computational overhead of one agent in one iteration is . Further, each agent has only one parent agent, while the root agent has no parent agent, so . Finally, the overall computational overhead of PGSA is . □
5. Experiment Results
In this section, we first provide the basic experimental configuration. Then, we show the evolution curves of our algorithms (PLSA and PGSA) and competing algorithms (HCMS, PCD, C-CoCoA, and PCD-LD) on three benchmark problems. Finally, we analyze the solution quality of the six algorithms.
5.1. Experimental Configuration
We evaluate our algorithms and competing algorithms on three benchmark problems as follows: (i) Random Graphs: we refer to the Erdös–Rényi model [42] to provide two random graphs, sparse random graphs (edge probability 0.1) and dense random graphs (edge probability 0.6); (ii) Scale-free Networks: we use the Barabási–Albert (BA) [43] model to generate scale-free networks. Its parameters are ; and (iii) Small-world Networks: we use the Watts–Strogatz topology model [44] to generate small-world networks. The number of nearest nodes is 6 and the reconnect probability is 0.5.
We set the number of agents from 50 to 100 for three benchmark problems, and the quantity interval was 10. Although PLSA and PGSA can use any form of utility functions (refer to Figure 1), we followed reference [36,38] and used the utility function in the form of to fairly present the comparison results, where , and f are random numbers in the range . In addition, we set the domains of all variables to and the number of iterations to 500. For each experimental configuration, we independently ran each algorithm 30 times and took the average as the experimental result. The experiments were carried out on a computer equipped with Intel(R) Core(TM) i5-10500 CPU, 3.10 GHz processor, and 8 GB RAM.
We considered three important parameters of PLSA, , and refer to reference [38] to set . For the parameters , we discretize into 0.01–0.9 and T into 50–100 to find a combination with the best solution quality on dense random graphs (). Figure 3 shows the relative quality of solutions with different and T, where we normalize the solution quality by max-min normalization to present the difference. Specifically, the relative quality is , where Q is the solution quality, and are the maximum and minimum solution quality, respectively. It is obvious from Figure 3 that the best combination () is . In addition, we set K to 1000. The parameter configuration of the competing algorithms can refer to HCMS [36], PCD [35], C-CoCoA [37], and PCD-LD [38]. It is worth mentioning that we record the best solution found on the empirical evaluation for each algorithm.
5.2. Comparison of Solution Quality
We present the evolution of the solution quality of our algorithms and competing algorithms with the increasing number of iterations on three benchmark problems with 100 agents. Since C-CoCoA is a non-iterative algorithm, we plot the solution quality of C-CoCoA as a straight line and focus only on its solution quality.
Figure 4 and Figure 5 show the evolution of solution quality of the six algorithms on sparse and dense random graphs, respectively. It can be seen from Figure 4 that PLSA obtains a high-quality solution through a few iterations, and the solution quality of PLSA is significantly superior to competing algorithms. Compared to the local search, there is a better exploration ability in the global search for the solution space. Although PLSA has excellent exploitation for solutions in early iterations, PGSA can explore a higher quality solution by global search. In Figure 5, PLSA and PGSA show the same performance as in sparse random graphs, but a significant difference is that the final solution quality of PLSA and PGSA is similar. The reason for this is that, as the number of neighboring agents on dense random graphs increases, the agents perform local searches over larger search spaces to obtain better solutions. It is worth noting that the solution quality of C-CoCoA is better than that of PCD and similar to HCMS on sparse random graphs, but in dense configurations, its solution quality is worse than PCD and HCMS. The reason for this is that C-CoCoA uses a semi-greedy local search method, for which it is easier to find high-quality solutions on simple graph structures than complex ones. In summary, PLSA and PGSA outperform competing algorithms on both sparse and dense random graphs.
Figure 6 and Figure 7 present the solution quality of PLSA and PGSA against competing algorithms on scale-free and small-world networks, respectively. We can clearly observe that the solution quality of PCD is better than that of HCMS before about 240 iterations. However, as the number of iterations increases, the solution quality of HCMS is superior to that of PCD, and the solution quality of PCD-LD is better than C-CoCoA. Since the global search in PGSA focuses on the exploration of solution space, and the exploitation ability of PGSA for solutions is not as good as that of PCD-LD, PCD-LD initially performs slightly better than PGSA in the early iterations. As the number of iterations increases, the solution quality of PGSA is superior to competing algorithms. In the end, our algorithms significantly outperform competing algorithms on these two benchmark problems.
Further, we evaluate the solution quality of our algorithms and competing algorithms on each benchmark problem with different numbers of agents, and the results are presented in Figure 8. We can see that the solution quality of our algorithm significantly outperforms HCMS, PCD, and C-CoCoA on three benchmark problems with each number of agents. Compared to PCD-LD, the superiority of PLSA and PGSA increases obviously in terms of solution quality as the number of agents increases.
5.3. Statistical Analysis
To clarify the superiority of our algorithms from a statistical perspective, we use the Wilcoxon signed rank test for statistical analysis on each benchmark problem with 100 agents, and the results are shown in Table 2. It can be clearly seen that our algorithms significantly outperform competing algorithms on three benchmark problems.
Table 3 lists the average improvement rates of PLSA and PGSA compared to HCMS, PCD, C-CoCoA, and PCD-LD on three benchmark problems. In addition, we calculate the standard deviation of the improvement rates under the same problem and show it next to the average improvement rate, denoted as . We can observe that the average improvement rates of our algorithms compared to HCMS and PCD are stable and more than 20%. Compared to C-CoCoA, the average improvement rates of PLSA and PGSA are not stable on different benchmark problems, since C-CoCoA has a better performance on simple graph structures. The average improvement rates of PLSA and PGSA are stable compared to PCD-LD, which are, on average, about 4% and 7%, respectively.
6. Conclusions and Future Work
The C-DCOP framework extends the DCOP framework to solve applications with continuous variables. Addressing the limitations of the utility function and computational overheads for the existing C-DCOP algorithms, we designed a fully decentralized algorithm (PLSA) and a global search anytime algorithm (PGSA). In PLSA, each agent only exchanges value assignments with neighbors to avoid privacy leakage. In PGSA, agents pass utility through pseudo-tree to achieve global search and guarantee anytime property. In summary, there is less computational and memory overhead in PLSA, and it can obtain high-quality solutions faster. PGSA guarantees the anytime property and achieves higher quality solutions, but it requires more computational and memory overhead for utility passing. Extensive evaluations on three benchmark problems demonstrate that our algorithms outperform the state-of-the-art C-DCOP algorithms in terms of the runtime and solution quality. However, there are two limitations: (i) PLSA adopts a stochastic strategy to escape from the local optimum, which may lead to instability in the solution; and (ii) PGSA converges slowly in the early period since it performs the global search. Therefore, the future research avenues can be summarized as follows: (i) we plan to combine some other heuristic methods to improve the quality of and maintain stability in PLSA’s solution; and (ii) we will try to modify the search strategy of PGSA to improve its convergence speed.
7. Discussions
In recent years, the C-DCOPs have been widely studied as an extension framework of DCOPs. As a basic problem framework, there are many other extension frameworks of DCOPs that have become research hot-spots, such as Asymmetric DCOPs (ADCOPs) [45], Multi-objective DCOPs (MO-DCOPs) [46], Dynamic DCOPs (D-DCOPs) [47], Probabilistic DCOPs (P-DCOPs) [48], etc. Accordingly, many algorithms have been proposed for solving different DCOPs-based frameworks. Specifically, in contrast to DCOPs, the utility generated by one agent in ADCOPs from a utility function may differ from the utility generated by another agent from the same utility function. Therefore, the authors of reference [45] extend DSA and proposes Asymmetric Coordinated Local Search (ACLS) to solve ADCOPs, which changes its value with a certain probability to escape from local minimums. The authors of reference [49] solve ADCOPs by employing the PT-ISABB algorithm, which adopts customized inference algorithms to provide strict upper and lower bounds and adopts a complete tree-based search to guarantee optimal performance. In [50], AsymDPOP is proposed to solve the privacy exposure problem in ADCOPs. For MO-DCOPs, the authors of reference [51] propose Multi-objective Synchronous Branch and Bound (MO-SBB) to solve it; the agents in MO-SBB extend the Current Partial Assignment (CPA) with their own assignments with the current utility vector. Once a non-dominated solution is found, it is broadcasted to all agents and the solution is added to the global bounding list. In addition, the authors of reference [52] adopt the concept of non-dominated bounded vectors and retain only non-dominated vectors to solve MO-DCOPs. Then, the D-DCOPs are proposed to cope with environmental evolution over time. The authors of reference [53] introduces an inference-based approach and employ the Hybrid Algorithm for Reconstructing Pseudo-trees (HARP) to solve D-DCOPs, which reuses previous DCOP information to accelerate the search for solutions. In addition [54], the authors employ a reinforcement learning approach to solve D-DCOPs. Finally, P-DCOPs are proposed to cope with environments with stochastic behavior, i.e., there are unexpected events that affect the agent’s behavior. The authors of reference [55] propose a sampling and inference-based algorithm called E-DPOP to solve P-DCOPs, which employs a collaborative sampling strategy to influence the random variables controlled by the agent, and a leading agent merges the set of variables after that. On the other hand, the authors of reference [56] propose the Distributed Neighbor Exchange Algorithm (DNEA) algorithm to solve P-DCOPs. Specifically, each agent in DNEA computes the utility vector with the neighboring agents and sends it to the neighbors. After that, the neighboring agent computes the best value for each of its variables and assigns those values to it probabilistically. The neighboring agent finally sends the assigned values to all its neighbors.
In summary, DCOPs are a widely used basic framework for multi-intelligent systems. With the development of practical applications, different versions of DCOPs-based frameworks have been proposed, and they have made great contributions for solving multi-intelligent system problems. Compared to C-DCOPs, the variables in the above DCOPs-based frameworks are discrete, thus incorporating continuous variables into different extended frameworks is an interesting area of study. Note that the Dynamic Continuous DCOPs (DC-DCOPs), which combine D-DCOPs and C-DCOPs, are provided in reference [47]. This means that exploring different DCOPs versions for continuous variables would be a worthy development.
Conceptualization, X.L. and K.D.H.; methodology, X.L.; software, X.L.; validation, X.L.; formal analysis, X.L.; investigation, X.L.; resources, K.D.H.; data curation, X.L.; writing—original draft preparation, X.L.; writing—review and editing, X.L.; visualization, K.D.H.; supervision, K.D.H.; project administration, K.D.H.; funding acquisition, K.D.H. All authors have read and agreed to the published version of the manuscript.
Not applicable.
Not applicable.
The code and benchmark problems for this paper can be found at
The authors declare no conflicts of interest. The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript; or in the decision to publish the results.
Footnotes
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Figure 2. A BFS pseudo-tree representation (c) of the C-DCOP depicted in Figure 1a.
Figure 3. Relative quality of solutions with different [Forumla omitted. See PDF.] and T.
Figure 4. The evolution of solution quality of PLSA and PGSA against the competing algorithms on sparse random graphs.
Figure 5. The evolution of solution quality of PLSA and PGSA against the competing algorithms on dense random graphs.
Figure 6. The evolution of solution quality of PLSA and PGSA against the competing algorithms on scale-free networks.
Figure 7. The evolution of solution quality of PLSA and PGSA against the competing algorithms on small-world networks.
Figure 8. The solution quality of PLSA and PGSA against the competing algorithms with different numbers of agents. (a) Sparse random graphs. (b) Sense random graphs. (c) Scale-free networks. (d) Small-world networks.
Figure 8. The solution quality of PLSA and PGSA against the competing algorithms with different numbers of agents. (a) Sparse random graphs. (b) Sense random graphs. (c) Scale-free networks. (d) Small-world networks.
The distributed population.
Agent | Agent | … | Agent | |
---|---|---|---|---|
solution 1 | | | … | |
solution 2 | | | … | |
… | … | … | … | … |
solution k | | | … | |
… | … | … | … | … |
solution K | | | … | |
Wilcoxon signed rank test results of solution quality over 30 independent runs of our algorithms and competing algorithms with the significance level
Type | Ours | HCMS | PCD | C-CoCoA | PCD-LD | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| | p | | | p | | | p | | | p | ||
Sparse | PLSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 28/2 | 441/24 | 0.000 |
PGSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 29/1 | 464/1 | 0.000 | |
Dense | PLSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 |
PGSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | |
Scale-free | PLSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 28/2 | 462/3 | 0.000 | 25/5 | 414/51 | 0.000 |
PGSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 29/1 | 464/1 | 0.000 | |
Small-world | PLSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 29/1 | 463/2 | 0.000 | 22/8 | 375/90 | 0.003 |
PGSA | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 | 30/0 | 465/0 | 0.000 |
The average improvement rate (rounded to two decimals) of PLSA and PGSA compared to the competing algorithms on three benchmark problems with different numbers of agents, where
Graph Type | Our Algorithms | HCMS ( | PCD ( | C-CcCoA ( | PCD-LD ( |
---|---|---|---|---|---|
Sparse random graphs | PLSA | 19.68% (±3.17%) | 24.24% (±8.53%) | 13.61% (±5.40%) | 3.55% (±2.00%) |
PGSA | 23.68% (±4.06%) | 28.41% (±9.25%) | 17.42% (±6.08%) | 7.01% (±2.58%) | |
Dense random graphs | PLSA | 26.57% (±3.97%) | 29.83% (±6.94%) | 49.03% (±6.66%) | 6.52% (±3.56%) |
PGSA | 28.70% (±4.26%) | 31.97% (±6.43%) | 51.50% (±6.13%) | 8.30% (±3.49%) | |
Scale-free networks | PLSA | 20.43% (±3.42%) | 23.19% (±8.47%) | 20.65% (±6.90%) | 3.93% (±1.94%) |
PGSA | 25.44% (±4.12%) | 28.31% (±9.02%) | 25.65% (±7.15%) | 8.23% (±2.14%) | |
Small-world networks | PLSA | 20.03% (±3.08%) | 22.18% (±7.57%) | 13.57% (±1.99%) | 2.06% (±2.54%) |
PGSA | 27.45% (±2.31%) | 27.57% (±7.16%) | 18.65% (±3.28%) | 6.59% (±1.98%) |
References
1. Fioretto, F.; Pontelli, E.; Yeoh, W. Distributed constraint optimization problems and applications: A survey. J. Artif. Intell. Res.; 2018; 61, pp. 623-698. [DOI: https://dx.doi.org/10.1613/jair.5565]
2. Modi, P.; Shen, W.M.; Tambe, M.; Yokoo, M. ADOPT: Asynchronous distributed constraint optimization with quality guarantees. Artif. Intell.; 2005; 161, pp. 149-180. [DOI: https://dx.doi.org/10.1016/j.artint.2004.09.003]
3. Petcu, A.; Faltings, B. A scalable method for multiagent constraint optimization. Proceedings of the 19th International Joint Conference on Artificial Intelligence; Edinburgh, Scotland, 28–30 July 2005; pp. 266-271.
4. Hoang, K.D.; Fioretto, F.; Hou, P.; Yokoo, M.; Yeoh, W.; Zivan, R. Proactive dynamic distributed constraint optimization. Proceedings of the 15th International Conference on Autonomous Agents and Multiagent Systems; Singapore, 9–13 May 2016; pp. 597-605.
5. Maheswaran, R.T.; Tambe, M.; Bowring, E.; Pearce, J.P.; Varakantham, P. Taking DCOP to the real world: Efficient complete solutions for distributed multi-event scheduling. Proceedings of the 3rd International Conference on Autonomous Agents and Multiagent Systems; New York, NY, USA, 19–23 July 2004; pp. 310-317.
6. Enembreck, F.; Barthès, J.A. Distributed constraint optimization with MULBS: A case study on collaborative meeting scheduling. J. Netw. Comput.; 2012; 35, pp. 164-175. [DOI: https://dx.doi.org/10.1016/j.jnca.2011.02.016]
7. Fioretto, F.; Yeoh, W.; Pontelli, E. A multiagent system approach to scheduling devices in smart homes. Proceedings of the 16th International Conference on Autonomous Agents and Multiagent Systems; São Paulo, Brazil, 8–12 May 2017; pp. 981-989.
8. Rust, P.; Picard, G.; Ramparany, F. Using message-passing DCOP algorithms to solve energy-efficient smart environment configuration problems. Proceedings of the 25th International Joint Conference on Artificial Intelligence; New York, NY, USA, 9–15 July 2016; pp. 468-474.
9. Farinelli, A.; Rogers, A.; Petcu, A.; Jennings, N.R. Decentralised coordination of low-power embedded devices using the max-sum algorithm. Proceedings of the 7th International Conference on Autonomous Agents and Multiagent Systems; Estoril, Portugal, 12–16 May 2008; pp. 639-646.
10. Yeoh, W.; Yokoo, M. Distributed problem solving. AI Mag.; 2012; 33, pp. 53-65. [DOI: https://dx.doi.org/10.1609/aimag.v33i3.2429]
11. Zivan, R.; Yedidsion, H.; Okamoto, S.; Glinton, R.; Sycara, K.P. Distributed constraint optimization for teams of mobile sensing agents. Auton. Agent. Multi. Agent. Syst.; 2015; 29, pp. 495-536. [DOI: https://dx.doi.org/10.1007/s10458-014-9255-3]
12. Yedidsion, H.; Zivan, R. Applying DCOP_MST to a team of mobile robots with directional sensing abilities. Proceedings of the 15th International Conference on Autonomous Agents and Multiagent Systems; Singapore, 9–13 May 2016; pp. 1357-1358.
13. Picard, G. Trajectory coordination based on distributed constraint optimization techniques in unmanned air traffic management. Proceedings of the 21st International Conference on Autonomous Agents and Multiagent Systems; Virtual Event, 9–13 May 2022; pp. 1065-1073.
14. Chen, Z.; Deng, Y.; Wu, T. An iterative refined max-sum_ad algorithm via single-side value propagation and local search. Proceedings of the 16th International Conference on Autonomous Agents and Multiagent Systems; São Paulo, Brazil, 8–12 May 2017; pp. 195-202.
15. Cohen, L.; Galiki, R.; Zivan, R. Governing convergence of max-sum on DCOPs through damping and splitting. Artif. Intell.; 2020; 279, 103212. [DOI: https://dx.doi.org/10.1016/j.artint.2019.103212]
16. Khan, M.M.; Tran-Thanh, L.; Jennings, N.R. A generic domain pruning technique for GDL-based DCOP algorithms in cooperative multi-agent systems. Proceedings of the 17th International Conference on Autonomous Agents and Multiagent Systems; Stockholm, Sweden, 10–15 July 2018; pp. 1595-1603.
17. Khan, M.M.; Tran-Thanh, L.; Yeoh, W.; Jennings, N.R. A near-optimal node-to-agent mapping heuristic for GDL-based DCOP algorithms in multi-agent systems. Proceedings of the 17th International Conference on Autonomous Agents and Multiagent Systems; Stockholm, Sweden, 10–15 July 2018; pp. 1604-1612.
18. Zivan, R.; Parash, T.; Cohen, L.; Peled, H.; Okamoto, S. Balancing exploration and exploitation in incomplete min/max-sum inference for distributed constraint optimization. Auton. Agent. Multi. Agent. Syst.; 2017; 31, pp. 1165-1207. [DOI: https://dx.doi.org/10.1007/s10458-017-9360-1]
19. Deng, Y.; Chen, Z.; Chen, D.; Zhang, W.; Jiang, X. AsymDPOP: Complete inference for asymmetric distributed constraint optimization problems. Proceedings of the 28th International Joint Conference on Artificial Intelligence; Macao, China, 10–16 August 2019; pp. 223-230.
20. Leeuwen, C.J.; Pawelczak, P. CoCoA: A non-iterative approach to a local search (A)DCOP solver. Proceedings of the 31st AAAI Conference on Artificial Intelligence; 4–9 February 2017; pp. 3944-3950. [DOI: https://dx.doi.org/10.1609/aaai.v31i1.11125]
21. Zivan, R.; Parash, T.; Cohen-Lavi, L.; Naveh, Y. Applying max-sum to asymmetric distributed constraint optimization problems. Auton. Agent. Multi. Agent. Syst.; 2020; 34, pp. 1-29. [DOI: https://dx.doi.org/10.1007/s10458-019-09436-8]
22. Deng, Y.; Chen, Z.; Chen, D.; Jiang, X.; Li, Q. PT-ISABB: A hybrid tree-based complete algorithm to solve asymmetric distributed constraint optimization problems. Proceedings of the 18th International Conference on Autonomous Agents and Multiagent Systems; Montreal QC, Canada, 13–17 May 2019; pp. 1506-1514.
23. Hoang, K.D.; Hou, P.; Fioretto, F.; Yeoh, W.; Zivan, R.; Yokoo, M. Infinite-horizon proactive dynamic DCOPs. Proceedings of the 16th International Conference on Autonomous Agents and Multiagent Systems; São Paulo, Brazil, 8–12 May 2017; pp. 212-220.
24. Hoang, K.D.; Fioretto, F.; Hou, P.; Yeoh, W.; Yokoo, M.; Zivan, R. Proactive dynamic distributed constraint optimization problems. J. Artif. Intell. Res.; 2022; 74, pp. 179-225. [DOI: https://dx.doi.org/10.1613/jair.1.13499]
25. Hirayama, K.; Yokoo, M. Distributed partial constraint satisfaction problem. Proceedings of the 3rd International Conference on Principles and Practice of Constraint Programming; Linz, Austria, 28–30 October 1997; pp. 222-236.
26. Rashik, M.; Rahman, M.M.; Khan, M.M.; Mamun-Or-Rashid, M.; Tran-Thanh, L.; Jennings, N.R. Speeding up distributed pseudo-tree optimization procedures with cross edge consistency to solve DCOPs. Artif. Intell.; 2021; 51, pp. 1733-1746. [DOI: https://dx.doi.org/10.1007/s10489-020-01860-8]
27. Litov, O.; Meisels, A. Forward bounding on pseudo-trees for DCOPs and ADCOPs. Artif. Intell.; 2017; 252, pp. 83-99. [DOI: https://dx.doi.org/10.1016/j.artint.2017.07.003]
28. Zhang, W.; Wang, G.; Xing, Z.; Wittenburg, L. Distributed stochastic search and distributed breakout: Properties, comparison and applications to constraint optimization problems in sensor networks. Artif. Intell.; 2005; 161, pp. 55-87. [DOI: https://dx.doi.org/10.1016/j.artint.2004.10.004]
29. Maheswaran, R.T.; Pearce, J.P.; Tambe, M. Distributed algorithms for DCOP: A graphical-game-based approach. Proceedings of the 17th International Conference on Parallel and Distributed Computing Systems; Newport Beach, CA, USA, 9–13 July 2004; pp. 432-439.
30. Chen, Z.; Wu, T.; Deng, Y.; Zhang, C. An ant-based algorithm to solve distributed constraint optimization problems. Proceedings of the 32nd AAAI Conference on Artificial Intelligence; New Orleans, LA, USA, 2–7 February 2018; pp. 4654-4661.
31. Chen, Z.; Liu, L.; He, J.; Yu, Z. A genetic algorithm based framework for local search algorithms for distributed constraint optimization problems. Auton. Agent. Multi. Agent. Syst.; 2020; 34, pp. 1-31. [DOI: https://dx.doi.org/10.1007/s10458-020-09464-9]
32. Stranders, R.; Farinelli, A.; Rogers, A.; Jennings, N.R. Decentralised coordination of continuously valued control parameters using the max-sum algorithm. Proceedings of the 8th International Conference on Autonomous Agents and Multiagent Systems; Budapest, Hungary, 10–15 May 2009; pp. 601-608.
33. Voice, T.; Stranders, R.; Rogers, A.; Jennings, N.R. A hybrid continuous max-sum algorithm for decentralised coordination. Proceedings of the 19th European Conference on Artificial Intelligence; Lisbon, Portugal, 8–12 August 2010; pp. 61-66.
34. Fransman, J.; Sijs, J.; Dol, H.; Theunissen, E.; Schutter, B.D. Bayesian-DPOP for continuous distributed constraint optimization problems. Proceedings of the 18th International Conference on Autonomous Agents and Multiagent Systems; Montreal, QC, Canada, 13–17 May 2019; pp. 1961-1963.
35. Choudhury, M.; Mahmud, S.; Khan, M.M. A particle swarm based algorithm for functional distributed constraint optimization problems. Proceedings of the 34th AAAI Conference on Artificial Intelligence; New York, NY, USA, 7–12 February 2020; pp. 7111-7118.
36. Hoang, K.D.; Yeoh, W.; Yokoo, M.; Rabinovich, Z. New algorithms for continuous distributed constraint optimization problems. Proceedings of the 19th International Conference on Autonomous Agents and Multiagent Systems; Auckland, New Zealand, 9–13 May 2020; pp. 502-510.
37. Sarker, A.; Choudhury, M.; Khan, M.M. A local search based approach to solve continuous DCOPs. Proceedings of the 20th International Conference on Autonomous Agents and Multiagent Systems; Virtual Event, UK, 3–7 May 2021; pp. 1127-1135.
38. Shi, M.; Liao, X.; Chen, Y. A particle swarm with local decision algorithm for functional distributed constraint optimization problems. Intern. J. Pattern. Recognit. Artif. Intell.; 2022; 36, 2259025. [DOI: https://dx.doi.org/10.1142/S021800142259025X]
39. Abuhamdah, A.; Ayob, M.; Kendall, G.; Sabar, N.R. Population based Local search for university course timetabling problems. Appl. Intell.; 2014; 40, pp. 44-53. [DOI: https://dx.doi.org/10.1007/s10489-013-0444-6]
40. Zivan, R.; Okamoto, S.; Peled, H. Explorative anytime local search for distributed constraint optimization. Artif. Intell.; 2014; 212, pp. 1-26. [DOI: https://dx.doi.org/10.1016/j.artint.2014.03.002]
41. Chen, Z.; He, Z.; He, C. An improved DPOP algorithm based on breadth first search pseudo-tree for distributed constraint optimization. Artif. Intell.; 2017; 47, pp. 607-623. [DOI: https://dx.doi.org/10.1007/s10489-017-0905-4]
42. Paul, E.; Rényi, A. On the evolution of random graphs. Publ. Math. Inst. Hung; 1960; 5, pp. 17-60. [DOI: https://dx.doi.org/10.1017/cbo9780511721342.003]
43. Réka, A.; Albert-László, B. Statistical mechanics of complex networks. Rev. Mod. Phys.; 2002; 74, 47. [DOI: https://dx.doi.org/10.1002/9783527627981.ch2]
44. Watts, D.J.; Strogatz, S.H. Collective dynamics of ’small-world’ networks. Nature; 1998; 393, pp. 440-442. [DOI: https://dx.doi.org/10.1038/30918]
45. Grinshpoun, T.; Grubshtein, A.; Zivan, R.; Netzer, A.; Meisels, A. Asymmetric distributed constraint optimization problems. J. Artif. Int. Res.; 2013; 47, pp. 613-647. [DOI: https://dx.doi.org/10.1613/jair.3945]
46. Delle Fave, F.M.; Stranders, R.; Rogers, A.; Jennings, N.R. Bounded decentralised coordination over multiple objectives. Proceedings of the 10th International Conference on Autonomous Agents and Multiagent Systems; Taipei, Taiwan, 2–6 May 2011; pp. 371-378.
47. Hoang, K.D.; Yeoh, W. Dynamic continuous distributed constraint optimization problems. Proceedings of the 24th International Conference on Principles and Practice of Multiagent Systems; Valencia, Spain, 16–18 November 2022; pp. 475-491.
48. Nguyen, D.T.; Yeoh, W.; Lau, H.C. Stochastic dominance in stochastic DCOPs for risk-sensitive applications. Proceedings of the 11th International Conference on Autonomous Agents and Multiagent Systems; Valencia, Spain, 4–8 June 2012; pp. 257-264.
49. Chen, D.; Deng, Y.; Chen, Z.; He, Z.; Zhang, W. A hybrid tree-based algorithm to solve asymmetric distributed constraint optimization problems. Auton. Agent. Multi. Agent. Syst.; 2020; 34, pp. 1-42. [DOI: https://dx.doi.org/10.1007/s10458-020-09476-5]
50. Chen, D.; Chen, Z.; Deng, Y.; He, Z.; Wang, L. Inference-based complete algorithms for asymmetric distributed constraint optimization problems. Artif. Intell. Rev.; 2022; 56, pp. 4491-4534. [DOI: https://dx.doi.org/10.1007/s10462-022-10288-0]
51. Medi, A.; Okimoto, T.; Inoue, K. A two-phase complete algorithm for multi-objective distributed constraint optimization. J. Adv. Comput. Intell. Intell. Inform.; 2014; 18, pp. 573-580. [DOI: https://dx.doi.org/10.20965/jaciii.2014.p0573]
52. Matsui, T.; Silaghi, M.; Hirayama, K.; Yokoo, M.; Matsuo, H. Leximin multiple objective optimization for preferences of agents. Proceedings of the 17th International Conference on Principles and Practice of Multiagent Systems; Gold Coast, QLD, Australia, 1–5 December 2014; pp. 423-438.
53. Yeoh, W.; Varakantham, P.; Sun, X.; Koenig, S. Incremental DCOP search algorithms for solving dynamic DCOPs. Proceedings of the 10th International Conference on Autonomous Agents and Multiagent Systems; Taipei, Taiwan, 2–6 May 2011; pp. 1069-1070.
54. Shokoohi, M.; Afsharchi, M.; Shah-Hoseini, H. Dynamic distributed constraint optimization using multi-agent reinforcement learning. Soft Comput.; 2022; 26, 360103629. [DOI: https://dx.doi.org/10.1007/s00500-022-06820-7]
55. Léauté, T.; Faltings, B. Distributed constraint optimization under stochastic uncertainty. Proceedings of the 25th AAAI Conference on Artificial Intelligence; San Francisco, CA, USA, 7–11 August 2011; pp. 68-73.
56. Atlas, J.; Decker, K. Coordination for uncertain outcomes using distributed neighbor exchange. Proceedings of the 9th International Conference on Autonomous Agents and Multiagent Systems; Toronto, ON, Canada, 10–14 May 2010; pp. 1047-1054.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
© 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/). Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License.
Abstract
Distributed Constraint Optimization Problems (DCOPs) are an efficient framework widely used in multi-agent collaborative modeling. The traditional DCOP framework assumes that variables are discrete and constraint utilities are represented in tabular forms. However, the variables are continuous and constraint utilities are in functional forms in many practical applications. To overcome this limitation, researchers have proposed Continuous DCOPs (C-DCOPs), which can model DCOPs with continuous variables. However, most of the existing C-DCOP algorithms rely on gradient information for optimization, which means that they are unable to solve the situation where the utility function is a non-differentiable function. Although the Particle Swarm-Based C-DCOP (PCD) and Particle Swarm with Local Decision-Based C-DCOP (PCD-LD) algorithms can solve the situation with non-differentiable utility functions, they need to implement Breadth First Search (BFS) pseudo-trees for message passing. Unfortunately, employing the BFS pseudo-tree results in expensive computational overheads and agent privacy leakage, as messages are aggregated to the root node of the BFS pseudo-tree. Therefore, this paper aims to propose a fully distributed C-DCOP algorithm to solve the utility function form problem and avoid the disadvantages caused by the BFS pseudo-tree. Inspired by the population-based algorithms, we propose a fully decentralized local search algorithm, named Population-based Local Search Algorithm (PLSA), for solving C-DCOPs with three-fold advantages: (i) PLSA adopts a heuristic method to guide the local search to achieve a fast search for high-quality solutions; (ii) in contrast to the conventional C-DCOP algorithm, PLSA can solve utility functions of any form; and (iii) compared to PCD and PCD-LD, PLSA avoids complex message passing to achieve efficient computation and agent privacy protection. In addition, we implement an extended version of PLSA, named Population-based Global Search Algorithm (PGSA), and empirically show that our algorithms outperform the state-of-the-art C-DCOP algorithms on three types of benchmark problems.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
Details


1 College of Computer and Information Science, Southwest University, Chongqing 400715, China
2 Department of Computer Science and Engineering, Washington University, Saint Louis, MO 63130, USA;