zoukankan      html  css  js  c++  java
  • Consensus-based decentralized auctions for robust task allocation

    Task-Allocation Problems

    The paper addresses task allocation to coordinate a fleet of autonomous vehicles by presenting two decentralized algorithms: the consensus-based auction algorithm(CBAA) and its generalization to the multi-assignment problem, the consensus-base bundle algorithm(CBBA)

    [max sum_{i=1}^{N_u}igg(sum_{j=1}^{N_t}c_{ij}(mathbf{x}_i,mathbf{p}_i)x_{ij}igg) ]

    subject to

    [sum_{j=1}^{N_t}x_{ij} leq L_t forall i in mathcal{I} ]

    [sum_{i=1}^{N_u}x_{ij} leq 1 forall j in mathcal{J} ]

    [sum_{i=1}^{N_u}sum_{j=1}^{N_t}x_{ij} = N_{min} riangleq min{N_t, N_{u}L_{t}} ]

    [x_{ij} in {0,1} forall (i,j) in mathcal{I} imes mathcal{J} ]

    • Score function: (c_{ij}(mathbf{x}_i,mathbf{p}_i))
    • binary decision variable: (x_{ij})
    • An ordered sequence of tasks for agent (i): (mathbf{p}_i)
    • (mathcal{I} riangleq {1,...,N_u}) represents agents and (mathcal{J} riangleq {1,...,N_t}) represents tasks.

    Consensus-Based Acution Algorithm

    PHASE 1: AUCTION PROCESS

    There are two vectors in Phase 1:

    • (mathbf{x}_i) is the agent (i)'s task list
    • (mathbf{y}_i) is the winning bids

    A list of valid tasks (h_i) can be represented using:

    [h_{ij}=mathbb{I}(c_{ij}>y_{ij}) forall j in mathcal{J} ]

    where (mathbb{I}(cdot)) is the indicator function, the function means if agent (i) has ability to bid the task (j)

    Process of auction algorithm:

    An unassigned agent (i)(equivalently, an agent with (sum_{j}x_{ij}(t)=0)) first computes its valid task list (h_i). If there are valid tasks, it then selects a task (J_i) giving it the maximum score based on the current list of winning bids (y_i) accordingly. Also, in the case that the agent has already assigned a task((sum_{j}x_{ij} eq 0)), this selection process is skipped and the agent moves to the phase 2.

    The Pseudo code of CBAA in Ph1:

    PHASE 2: CONSENSUS PROCESS

    The second phase of CBAA is the consensus section of the algorithm.

    (mathbb{G}( au)) be the undirected communication network at time ( au) with symmetric adjacency matrix (G( au)).
    Agent (i) receives the list of winning bits (mathbf{y}_i) from its neighbors.

    Process of consensus:

    Agent (i) replaces (y_{ij}) values with the largest value between itself and its neighbors. Also, an agent loses its assignment if it finds that it is outbid by others for the task it had selected.

    Consensus-Based Bundle Algorithm

  • 相关阅读:
    NodeJS笔记:处理非utf8编码
    SQL Server存储过程中的异常处理
    "岛主" 同学给我出的算法题
    学 Win32 汇编[18]: 关于压栈(PUSH)与出栈(POP) 之二
    如何在数据表中存取图片 回复 "三足乌" 的问题
    学 Win32 汇编[19]: 查看二进制等相关函数
    如何删除动态数组的指定元素 回复 "Splendour" 的部分问题
    学 Win32 汇编[17]: 关于压栈(PUSH)与出栈(POP) 之一
    学 Win32 汇编[22] 逻辑运算指令: AND、OR、XOR、NOT、TEST
    学 Win32 汇编[20]: 洞察标志寄存器
  • 原文地址:https://www.cnblogs.com/ysfurh/p/14116164.html
Copyright © 2011-2022 走看看