; CSCI 4150 Introduction to Artificial Intelligence, Fall 2003 ; Assignment 7 ; (load "a7header") ; don't change this line ; Problem 1 ; (define (rl-strategy game-state actions) 'your-procedure-here) ; Problem 2 ; (define (tranform-state game-state) 'your-procedure-here) (define (init-tables) 'your-procedure-here) ; Problem 3 ; ; you have several options for this problem ; ; value iteration ; ;(define (value-iteration) ; 'your-procedure-here) ; policy iteration ; ;(define (policy-iteration) ; 'your-procedure-here) ; temporal differencing ; ;(define (td-learning fs-num action ts-num) ; 'your-procedure-here) ; ;(define (exploration-fn u n) ; 'your-procedure-here) ; ;