list-merged-concepts [Function]
Purpose
The list-merged-concepts function lists all concepts into which other concepts have merged.
Syntax
list-merged-concepts &optional context
Arguments
The context argument specifies which context to search. If this argument is not supplied, all contexts are searched.
Value
The list-merged-concepts function returns a list of merged concepts and/or relations.
Examples
(defconcept A)
(defconcept B :is A)
(defconcept C :is (:exactly 1 r))
(defconcept D :is (:and (:at-least 1 r) (:at-most 1 r)))
(list-merged-concepts) ==> (|C|A |C|C)
(list-merged-concepts (find-context "CL-USER-THEORY")) ==> (|C|A |C|C)
See Also
Last modified: Jun 1 1995