Distributed Constraint Optimization Problems(DCOPs)(Fioretto et al., 2018; Modi et al., 2004; Petcu & Faltings, 2005) can be thought as a variant of Constraint Satisfaction Problems(CSPs). In real-world problems(like sensor networks), it’s impossible to get an assignment to all variables that satisfy all the constraints. One way is we model the problem as Max Constraint Satisfaction Problems(MAX-CSPs). In other words, we figure out an assignment to all variables that satisfy a maximum number of constraints. Constraint Optimization Problems(COPs) are another way to draw up the problem. It relaxes hard constraints to soft constraints and its objective is to minimize costs. The Distributed Constraint Satisfaction(DisCSP) paradigm (Yokoo, 2012) has been proposed as a way to model and reason about the interactions between agents’ local decisions. Likewise, DCOP is a distributed version of COP meaning the problem is modeled and resolved in a decentralized manner. In DCOP variables are monitored by agents, thus a communication model is needed and it follows agents’ local knowledge. Distributed models are faster(parallelism) and robust(no single point of failure, no single network bottleneck) by their distribution nature. They also naturally map to multi-agent systems and maintain more confidential information.

In a multi-agent system(MAS), an agent is described as an entity that behaves autonomously in the pursuit of goals. An agent is autonomous, interactive, reactive, and proactive.

DCOP algorithms are a class of distributed cooperative multi-agent algorithms in which several autonomous agents coordinate their decisions to achieve a shared goal while accounting for personal preferences.

Mathematically, a DCOP is composed by the following entities:

  • \(\mathcal{A}=\{a_1,...,a_p\}\): The set of autonomous agents participating in the problem
  • \(\mathcal{X}=\{x_1,...,x_n\}\): The set of variables in the problem.
  • \(\mathcal{D}=\{D_1,...,D_n\}\): The domains for the variables in X, where \(D_i\) represents the set of possible values that the variable \(x_i\) may be assigned
  • \(\mathcal{C}=\{c_1,...,c_e\}\): The set of problem constraints. Each constraint \(c_i\) is a function that involves (multiple) variable(s) from X and associates a cost for each combination of their value assignments.
  • \(\alpha:\mathcal{X}\rightarrowtail \mathcal{A}\): A mapping that associates variables to agents, expressing which agent controls which variables

DCOP has wide applications in the real world. (Fioretto et al., 2017) describes a DCOP model with MGM(Maheswaran et al., 2004) algorithm to solve Demand-side management(DSM) smart device schuduling problem.

In genral, DCOP can be represented as constraint graph where each vertices are variables and edges are constarints.

DCOP algorithms can be classified as being either complete or incomplete, based on whether they can guarantee the optimal solution or they trade optimality for shorter execution times, producing near-optimal solutions. We evaluate DCOP algorithms by following metrics: agent complexity, network loads, message size, anytime( An algorithm is said anytime if it can return a valid solution even if the DCOP agents are interrupted at any time before the algorithm terminates), quality guarantees and execution time vs. solution quality.

A synchronous algorithm requires a systematic process divided into steps and each agent waits for particular messages before acting. As a result, it gets a consistent view of the search process and more idle time. On the other side, the asynchronous algorithm makes decisions based on agents’ local state and agents’ actions are not dependent on the sequence of received messages. It minimizes idle time but has no guarantees on the validity of local views.

The computational complexity of DCOP as defined above is NP-hard(3-colorability of a graph is know to be NP-complete(Papadimitriou, 1994)).

(Petcu & Faltings, 2005) proposes a complete method for dcop called DPOP(distributed pseudo-tree optimization procedure) algorithm based on dynmaic programming and pseudotree.

A pseudo-tree arrangement of a graph G is a rooted tree with the same vertices as G and the property that adjacent vertices from the original graph fall in the same branch of the tree. An alternative pseudo-tree definition: A spanning tree of the constraint graph such that no two nodes in sibling subtrees share a constraint in the constraint graph.

The main idea with their use in search, is that due to the relative independence of nodes lying in different branches of the pseudotree, it is possible to perform search in parallel on these independent branches. A DFS(depth-first search) tree is also a pseudotree(although the inverse does not always hold). A pseudotree consists of tree edges, shown as solid lines, and back edges, shown as dashed lines, that are not part of the spanning tree. We call a path in the graph that is entirely made of tree edges, a tree-path. A tree-path associated with a back-edge is the tree-path connecting the two nodes involved in the back-edge. For each back-edge, the higher node involved in that back-edge is called the back-edge handler. DPOP runs three phases.

  1. It builds a depth-first search(DFS) tree that overlays the constraint network. This pseudotree, made of parent links and pseudo-parent links (when loops appear in the constraint graph) is used by agents owning variables to interact during the next phases.
  2. Once the DFS tree is build, cost messages are sent by the leafs and propagate from children to parent up to the root. A cost message, assessed by joining all the messages received from children, is a relation associating a cost to every possible assignment of the variables in the agent’s separator.
  3. Once the root has received the cost messages from its children, it assesses the aggregated costs of the whole problem and then it decides the best assignment for its variables.

Finally, it broadcasts this assignment in a value message to its children, who assess their best assignments and send them down the tree.

(Hirayama & Yokoo, 1997) introduces a Synchronous Branch and Bound(SBB) algorithm for for solving Distributed Maximal Constraint Satisfaction Problems (DM-CSPs), which belong to an important class of Distributed Partial Constraint Satisfaction Problem(DPCSP)(Yokoo et al., 1992).

(Farinelli et al., 2008) shows a novel representation of the dcop as a cyclic bipartite factor graph composed of variable and function nodes and use an extension of the max-sum algorithm to generate approximate solutions to this global optimisation problem through decentralised local message passing between interacting agents.

A factor graph is an undirected bipartite graph in which vertices represent variables and constraints (called factors), and an edge exists between a variable and a constraint if the variable is in the scope of the constraint.

Messages will flow from factors to variables, and vice versa and are only associating costs to values of the recipient. A factor \(f_m\) assesses the message \(R_{m\rightarrow n}\) to variable \(x_n\) by adding its own cost \(c_m\) to the costs received from all the variables connected to it, except \(x_n\), and choosing the best cost for a value of \(x_n\) when several alternatives exists for obtaining this value. In return, a variable \(x_n\) assesses a message \(Q_{n\rightarrow m}\) to factor \(f_m\) by only adding messages received from connected factors except the factor \(f_m\). When a factor or a variable computes twice the same message for the same recipient, it stops propagation. The process ends at convergence or when a time limit is reached.

A forum for discussion on DCOP algorithms and applications has been held at the Optimization in Multi-Agent Systems (OptMAS) workshop since 2010 at the International Conference on Autonomous Agents and Multiagent Systems (AAMAS).

References

  1. Distributed Constraint Optimization Problems and Applications: A Survey
    Fioretto, Ferdinando, Pontelli, Enrico, and Yeoh, William
    Journal of Artificial Intelligence Research Mar 2018
  2. ADOPT: Asynchronous Distributed Constraint Optimization with Quality Guarantees
    Modi, Pragnesh Jay, Shen, Wei-Min, Tambe, Milind, and Yokoo, Makoto
    Artificial Intelligence Mar 2004
  3. A scalable method for multiagent constraint optimization
    Petcu, Adrian, and Faltings, Boi
    In In: International Joint Conference on Artificial In℡ligence. Volume Mar 2005
  4. Distributed constraint satisfaction: foundations of cooperation in multi-agent systems
    Yokoo, Makoto
    In In: International Joint Conference on Artificial In℡ligence. Volume Mar 2012
  5. A multiagent system approach to scheduling devices in smart homes: 31st AAAI Conference on Artificial Intelligence, AAAI 2017
    Fioretto, Ferdinando, Yeoh, William, and Pontelli, Enrico
    WS-17-01 Mar 2017
  6. Distributed Algorithms for DCOP: A Graphical-Game-Based Approach
    Maheswaran, Rajiv T., Pearce, Jonathan P., and Tambe, Milind
    In In PDCS Mar 2004
  7. Computational Complexity
    Papadimitriou, Christos H
    In In PDCS Mar 1994
  8. DPOP: A Scalable Method for Multiagent Constraint Optimization
    Petcu, Adrian, and Faltings, Boi
    In Jan 2005
  9. Distributed partial constraint satisfaction problem
    Hirayama, Katsutoshi, and Yokoo, Makoto
    In Principles and Practice of Constraint Programming Jan 1997
  10. Distributed constraint satisfaction for formalizing distributed problem solving
    Yokoo, M., Ishida, T., Durfee, E.H., and Kuwabara, K.
    In [1992] Proceedings of the 12th International Conference on Distributed Computing Systems Jun 1992
  11. Decentralised coordination of low-power embedded devices using the max-sum algorithm
    Farinelli, A., Rogers, A., Petcu, A., and Jennings, N. R.
    In Proceedings of the 7th international joint conference on Autonomous agents and multiagent systems - Volume 2 Jun 1992