EssexUniversityMCTS / gvgai

This is the framework for the General Video Game Competition - http://www.gvgai.net/
Other
140 stars 69 forks source link

Conflicts of termination conditions #83

Closed muupan closed 7 years ago

muupan commented 7 years ago

It's not clear what happens if multiple termination conditions are satisfied simultaneously from the wiki. https://github.com/EssexUniversityMCTS/gvgai/wiki/Termination-Conditions

rdgain commented 7 years ago

Hi!

I have added a clarification on this. The entirety of the VGDL language is sequential, all interactions and terminations are checked one at a time, from top to bottom. Therefore, if more than one termination condition is satisfied, the first one would trigger.

I hope this helps! Raluca.

muupan commented 7 years ago

thank you!