package.reasoner.lisp @ 4ce62327f4bd

Add `abort` support, tweak examples for ELS
author Steve Losh <steve@stevelosh.com>
date Mon, 03 Apr 2017 23:52:37 +0200
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."))