نمایش نتایج 1 تا 2 از 2

نام تاپیک: روش ایجاد یک درخت مینی ماکس MiniMax

  1. #1

    روش ایجاد یک درخت مینی ماکس MiniMax

    در مورد روش ایجاد یک درخت minimax چگونه عمل کنم ( تئوری بازی در هوش مصنوعی )

  2. #2
    مدیر بخش آواتار whitehat
    تاریخ عضویت
    مهر 1382
    محل زندگی
    شیراز
    پست
    2,175
    تولید درخت مینی ماکس به نقل از ویکی
    function minimax(node, depth)
    if node is a terminal node or depth = CutoffDepth
    return the heuristic value of node
    if the adversary is to play at node
    let beta := +∞
    foreach child of node
    beta := min(beta, minimax(child, depth+1))
    return beta
    else {we are to play at node}
    let α := -∞
    foreach child of node
    α := max(α, minimax(child, depth+1))
    return α
    آخرین ویرایش به وسیله whitehat : چهارشنبه 01 اسفند 1386 در 11:43 صبح
    To follow the path:
    Look to the master
    Follow the master
    Walk with the master
    See through the master
    Become the master

قوانین ایجاد تاپیک در تالار

  • شما نمی توانید تاپیک جدید ایجاد کنید
  • شما نمی توانید به تاپیک ها پاسخ دهید
  • شما نمی توانید ضمیمه ارسال کنید
  • شما نمی توانید پاسخ هایتان را ویرایش کنید
  •