i was wondering how do the matching system work ?
I usually had at least a few fight every hours, now its been about 2 day since my bot last fight lol.
________
extreme vaporizer
Matching system ?
Matching system ?
Last edited by Jey123456 on Wed Feb 02, 2011 11:35 pm, edited 1 time in total.
ah, i see, its manually done ?. I tought there would be some sort of automatic fight hehe. Thx for answering lol
________
herbal vaporizers
________
herbal vaporizers
Last edited by Jey123456 on Wed Feb 02, 2011 11:35 pm, edited 1 time in total.
Hey Adum,
Could you press the button again please?
The bot I uploaded two days ago only got to fight for 5 minutes..
Maybe I'm being too impatient?
Ideally the match runner would run continuously with a very low process priority until all bots have played roughly the same amount of matches. Or is that too simplistic?
Pseudocode:
Could you press the button again please?
The bot I uploaded two days ago only got to fight for 5 minutes..
Code: Select all
Opponent Date Time Winner Length
asx 2009-07-15 17:24:00 Sun Tzu 576
asx 2009-07-15 17:24:14 Sun Tzu 311
Colossus 2009-07-15 17:25:32 Sun Tzu 275
Xtee 2009-07-15 17:28:47 Sun Tzu 1010
asx 2009-07-15 17:28:51 Sun Tzu 165
Ideally the match runner would run continuously with a very low process priority until all bots have played roughly the same amount of matches. Or is that too simplistic?
Pseudocode:
Code: Select all
while (running) {
if (New or updated bot) {
opponents = select bot from bots where bot != newbot
foreach opponent in opponents {
play(newbot, opponent)
}
}
avg = select avg(matchcount) from bots
candidates = select bot from bots where matchcount < (avg*0.9)
foreach candidate in candidates {
opponent = select bot from bots where bot != candidate order by rand() limit 1
play(candidate, opponent)
}
}