r3465: *** empty log message ***
[umlisp.git] / composite.lisp
index 143b130b4c9f217c3931a3fedebfd4661f14099c..739faa23ce1164e73846ec5bc26718ab9a7e7b0b 100644 (file)
@@ -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.
 ;;; 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 ()
 
 
 (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")
       (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)))
        (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))