29.08.2013 Views

Spel(l) - Liacs

Spel(l) - Liacs

Spel(l) - Liacs

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

AI—<strong>Spel</strong>(l)en Minimax — algoritme<br />

function MaxWaarde(toestand)<br />

if eindtoestand then return Utility(toestand)<br />

waarde ← −∞<br />

for s in Opvolgers(toestand) do<br />

waarde ← max(waarde,MinWaarde(s))<br />

return waarde<br />

function MinWaarde(toestand)<br />

if eindtoestand then return Utility(toestand)<br />

waarde ← +∞<br />

for s in Opvolgers(toestand) do<br />

waarde ← min(waarde,MaxWaarde(s))<br />

return waarde<br />

15

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!