;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; CSCI 4150 Intro. to AI, Fall 2005 ; Assignment 4 ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; If you are not redefining any built-in Scheme procedures, then ; uncomment this next line, and this will make your compiled code run ; faster. (Yes, we will be compiling your code to reduce the load on ; the web server.) ; ; (declare (usual-integrations)) (load "a4code") ; don't change this line! (load "connect4") ; don't change this line! ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; Evaluation function for Connect 4 (Problems 3 and 6) ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define (c4-eval board current-player max-player) 'your procedure here)