X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=composite.lisp;h=07fe8ae0376a69c5fe92d9d248c718cae8e02132;hb=8ebac608d6ee0299981bceabc9f3fc89a1745544;hp=a5b6f24b8796882b38bdc104590315807d463f91;hpb=2a9323ad08bb039885ba06ebd67a9e01243efceb;p=umlisp.git diff --git a/composite.lisp b/composite.lisp index a5b6f24..07fe8ae 100644 --- a/composite.lisp +++ b/composite.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: composite.lisp,v 1.19 2002/12/14 02:35:28 kevin Exp $ +;;;; $Id: composite.lisp,v 1.20 2003/01/17 18:40:49 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -99,8 +99,10 @@ (let* ((tui (car tuple)) (freq (ensure-integer (caar (mutex-sql-query - (format nil "select count(*) from MRSTY where TUI=~a" tui)))))) - (push (make-instance 'usty_freq :usty (find-usty-tui tui) :freq freq) usty_freqs))) + (format nil "select count(*) from MRSTY where TUI=~a" tui))))) + (usty (find-usty-tui tui))) + (push (make-instance 'usty_freq :sty (sty usty) + :tui (tui usty) :freq freq) usty_freqs))) (sort usty_freqs #'> :key #'freq))) @@ -120,7 +122,9 @@ (caar (mutex-sql-query (format nil "select count(*) from MRSO where SAB='~a'" (sab usrl))))))) - (push (make-instance 'usrl_freq :usrl usrl :freq freq) freqs))) + (push (make-instance 'usrl_freq :sab (sab usrl) :srl (srl usrl) + :freq freq) + freqs))) (sort freqs #'> :key #'freq))) (defun find-ucon2_freq-coc-tui (ucon tui)