My graduation thesis is about designing a platform for the verification of DCOP algorithms in Python. So it’s worthwhile to read some existing DCOP solvers and try to integrate their design advantages. At present, there are about the following platforms for the verification of distributed constrained optimization problem solving algorithms.

  1. FRODO(a Framework for Open/Distributed Optimization) designed by EPFL, Artificial Intelligence Laboratory.
  2. DisChoco 2(A platform for distributed constraint programming) based on Choco.
  3. DCOPSolver designed by Chongqing University, School of Computing, Starlab.
  4. PyDCOP designed by Orange Open Source.

After a quick look on the above platform, I list below a few functions that a good platform should implement.

  1. Random DCOP generator module for benchmarking.
  2. Parsing module for mapping file to data structure.
  3. Messaging(communication) module for agents communication.

DCOP File Format

In FRODO, DCOP is described in a XML file based on the XCSP 2.1 format with small extensions. DisChoco uses XDiscCSP format which is a subset of the XCSP format. DCOPSolver use the same format as FRODO for it reuse some modules from FRODO and DisChoco. PyDCOP otherwise uses YAML to represents DCOPs. YAML is less verbose and more friendly for pythonista, while XML is more often used with Java. In general, it includes following filed to describe a DCOP:

  1. The name of and the description(optional) of the problem.
  2. Objective of the problem(min or max).
  3. Domains, each domain must have a name and a list of values. Type(‘non_semantic’, ‘luminosity’, ‘color’, etc) and initial value are optional.
  4. Variables with domain and optional initial value. You may add any extra key value pair preserved during parsing. You can also define cost function on a variable(actually a unary constraint depending on this variable). Noise level can be used to add some random noise to cost function.
  5. External variables are not controlled nor modified during the optimization process.These variables can be used in constraints definition. In a dynamic DCOP they can be modified externally through events. Initial value is mandatory for external variables.
  6. Constraints, each constraint should have a type(intention or extension). If it’s intentional, the constraint can be defined by function described by expression(simple expression, ternary python operator, multi-line python function, external file). partial filed can be used for serializing dynamic dcop. When using extentional constraints, the list of variables the contraints depends on must be explicitly given. The values section is a map from the values of the constraint to a list of assignments that yield that value. Assignment are given in the same order as the variables in the variables section above.
  7. Agents can be given as a list or map. The capacity of an agent is an agent property expected by many distribution algorithm.
  8. Routes model the cost of communication between any pair of two agents. This can be used when distributing computations on agents, to optimize the distribution for reduced communication cost. Route are assumed to be symmetric.
  9. Hosting Costs is a measure of the costs for a agent for hosting a given computation.
DCOPSolver Parser UML Graph.