Search found 1 match

by fito42
Sat Nov 03, 2018 6:20 am
Forum: Common Lisp
Topic: Use of "reverse" Function in Lisp for minimax-alpha-beta
Replies: 1
Views: 15242

Use of "reverse" Function in Lisp for minimax-alpha-beta

I have a function that the minimax-alpha-beta performs, the fact is that it reads from left to right and I would like it to read backwards and I thought about the "reverse" function but I can not get it to work for me. The code is the following: (defun minimax-alpha-beta (nodo alpha beta) ...