package.reasoner.lisp @ 398709a1dc28 default tip

Update URLs
author Steve Losh <steve@stevelosh.com>
date Tue, 14 Jan 2020 19:49:37 -0500
parents fc6ac5c922d6
children (none)
(defpackage :ggp.reasoner
  (:use :cl :temperance)
  (:export
    :make-reasoner
    :initial-state
    :next-state
    :terminalp
    :legal-moves-for
    :goal-value-for
    :roles)
  (:documentation "This package contains a simple GGP reasoner.  It can be useful as a starting point for writing general game players."))