package.reasoner.lisp @ 4e100d7ed0b0

Prep for initial release
author Steve Losh <steve@stevelosh.com>
date Fri, 10 Feb 2017 16:27:29 +0000
parents 1a4608813a73
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."))