X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=composite.lisp;h=739faa23ce1164e73846ec5bc26718ab9a7e7b0b;hb=946518fbe81146e1bbe84486ba2daa787dad6bc0;hp=143b130b4c9f217c3931a3fedebfd4661f14099c;hpb=1c5e2a86547aebe304e7b4c6f7bfa75af090fa43;p=umlisp.git diff --git a/composite.lisp b/composite.lisp index 143b130..739faa2 100644 --- a/composite.lisp +++ b/composite.lisp @@ -1,4 +1,4 @@ -;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*- +;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: composite.lisp,v 1.10 2002/11/23 20:59:22 kevin Exp $ +;;;; $Id: composite.lisp,v 1.12 2002/11/23 22:19:17 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -66,16 +66,15 @@ ;;; Composite Objects (defclass ucon_freq (ucon) - ((freq :type integer :initarg :freq :accessor freq :print-formatter ho:comma-integer)) + ((freq :type integer :initarg :freq :accessor freq :print-formatter fmt-comma-integer)) (:metaclass hyperobject-class) (:default-initargs :freq 0) (:title "Concept and Count") (:print-slots cui freq pfstr) - (:ref-fields (cui find-ucon-cui)) (:documentation "Composite object of ucon/freq")) (defclass ustr_freq (ustr) - ((freq :type fixnum :initarg :freq :accessor freq :print-formatter ho:comma-integer)) + ((freq :type fixnum :initarg :freq :accessor freq :print-formatter fmt-comma-integer)) (:metaclass hyperobject-class) (:default-initargs :freq 0) (:title "String and Count") @@ -87,7 +86,7 @@ (:metaclass hyperobject-class) (:default-initargs :freq 0) (:title "Semantic Type and Count") - (:print-slots tui freq sty)) + (:print-slots tui freq sty) (:documentation "Composite object of usty/freq")) (defun find-usty_freq-all () @@ -102,7 +101,7 @@ (defclass usrl_freq (usrl) - ((freq :type fixnum :initarg :freq :accessor freq :print-formatter ho:comma-integer)) + ((freq :type fixnum :initarg :freq :accessor freq :print-formatter fmt-comma-integer)) (:metaclass hyperobject-class) (:default-initargs :freq 0) (:title "Source and Count") @@ -128,7 +127,8 @@ (kmrcl:aif (cui2 ucoc) (let ((ucon2 (find-ucon-cui kmrcl::it))) (when (ucon-is-tui? ucon2 tui) - (push (make-instance 'ucon_freq :ucon ucon2 :freq (cof ucoc)) + (push (make-instance 'ucon_freq :cui (cui ucon2) :lrl (lrl ucon2) + :pfstr (pfstr ucon2) :freq (cof ucoc)) ucon_freqs))))) (setq ucon_freqs (delete-duplicates ucon_freqs :key #'cui)) (sort ucon_freqs #'> :key #'freq))) @@ -161,7 +161,8 @@ (kmrcl:aif (aref ucon_freqs (cui ucon2)) (setf (freq kmrcl::it) (1+ (freq kmrcl::it))) (setf (aref ucon_freqs (cui ucon2)) - (make-instance 'ucon_freq :ucon ucon2 :freq 1))))) + (make-instance 'ucon_freq :cui (cui ucon2) :lrl (lrl ucon2) + :pfstr (pfstr ucon2) :freq 1))))) (let ((ucon_freq-list '())) (dotimes (i (find-cui-max)) (declare (fixnum i))