Am 16.06.2008, 22:20 Uhr, schrieb Peter Drake <[EMAIL PROTECTED]>:

UCT

The idea of MonteCarlo and UCT contain the elemination of special game rules ( include experienced moves like ladders ) and used the real ability of computers: searching and sorting. I am right ?

So, the question has the wrong perspectiv. The clou and baseidea of MC/UCT is, that there is no need to implement special rules like ladders or things like mojo, sente etc. MC evaluate only the hole game, when looking who will win, if a special move is done.

Hope I get it right. :)

program oh_iam_sooo_quick_and_dirty;

get_input_move(input);
.
.
.
do
{
        set_randomseed(); //sic! :)
        do
        {
        color = white;
        pass = 0;
        if("pass" == play_random_move(color); // moves or pass
                pass++;
        else
                set_move_to_tree(tree); //more complicated!!!
        color = black;
        if("pass" == play_random_move(color); // moves or pass
                pass++;
        else
                set_move_to_tree(tree); //more complicated!!!
        }
        while(pass == 2)
set_next_root_tree(input);
}
while(time = 10 sec)
.
.
.
proram ends;

Dont know the formating issues will stay after sending.
Greets
WSK
_______________________________________________
computer-go mailing list
[email protected]
http://www.computer-go.org/mailman/listinfo/computer-go/

Reply via email to