package.reasoner.lisp @ 1a4608813a73

Add some documentation for the reasoner and a few missing functions
author Steve Losh <steve@stevelosh.com>
date Sun, 29 Jan 2017 22:07:19 +0000
parents a07961309f28
children fc6ac5c922d6
(defpackage :ggp.reasoner
  (:use :cl :temperance)
  (:export
    :make-reasoner
    :initial-state
    :next-state
    :terminalp
    :legal-moves-for
    :goal-value-for)
  (:documentation "This package contains a simple GGP reasoner.  It can be useful as a starting point for writing general game players."))