;;;; -*- Mode: LISP; Syntax: Common-Lisp; Base: 10 -*- ;;;; --------------------------------------------------------------------------- ;;;; File name: bug-report.lsp ;;;; System: ;;;; Version: 1.0 ;;;; Author: Ken Forbus ;;;; Created: November 5, 2000 22:48:36 ;;;; Purpose: This file documents current bugs. Remove contents when repaired. ;;;; --------------------------------------------------------------------------- ;;;; Modified: Friday, November 17, 2000 at 20:41:10 by forbus ;;;; --------------------------------------------------------------------------- (in-package :common-lisp-user) #| ===================================================== what i'm loading: (defun hack-fire (&optional (action :source-if-newer)) (load-file (make-qrg-path) "rdc-bridge") (qrg::load-qrg-defsys "dbex") (eval `(,(intern "LOAD-DBEX" (find-package :dbex)))) (qrg::load-qrg-defsys "ire" "v1") (load-ire :action action)) patches to dbex: had to add a definition for make-full-file-spec; it errors out otherwise. export problem? ;; The bug: Occurs when trying to slug in the merged Cyc ontology from HPKB. ;; How to reproduce the problem: ";; N.B. d:\\qrg\\ is the QRG path on bender; please plug in your own." > (make-test-kb) > (load-cyc-converted-file "d:\\qrg\\ire\\v1\\tests\\cyc-merged-ontology.lsp") error: read-field: unable to read field 0 from record 540701557. ===================================================== |# ;;;; --------------------------------------------------------------------------- ;;; END OF CODE