;;; -*- Syntax: Common-lisp; Mode: LISP; -*- ;;;; Three blobs example ;;;; File name: ex5.lsp ;;;; modified: Thursday, February 14, 2008 at 11:27:38 by Ken Forbus ;;; Copyright (c) 1993, Kenneth D. Forbus, Northwestern University, ;;; and Johan de Kleer, the Xerox Corporation. ;;; All rights reserved. ;;; See the file legal.txt for a paragraph stating scope of permission ;;; and disclaimer of warranty. The above copyright notice and that ;;; paragraph must be included in any separate copy of this file. (in-package :cl-user) ;;; Three blobs example (assertq (physob f)) (assertq (physob g)) (assertq (physob h)) (assertq (heat-path p1)) (assertq (heat-path p2)) (assertq (heat-connection p1 f g)) (assertq (heat-connection p1 g f)) (assertq (heat-connection p2 g h)) (assertq (heat-connection p2 h g))