The role argument is a relation, or the name of a relation.
The value argument is the value to be removed from the fillers of role. If value is a list, the list is interpreted as a single role filler. If value is a symbol, the value is coerced to an instance unless the the range of role indicates that it should be interpreted as a constant.
The kb argument is the knowledge base, or the symbol or string that names the knowledge base, where the lookup of instance and role begins. This defaults to the current knowledge base.
If the no-error-p argument is t, then error messages are suppressed.
(defrelation rr) (set-values 'Joe 'rr '(Mary Sue (3 4 5))) ==> (|I|MARY |I|SUE (3 4 5)) (remove-value 'Joe 'rr 'Mary) ==> |I|MARY (remove-value 'Joe 'rr '(3 4 5)) ==> (3 4 5) (get-values 'Joe 'rr) ==> (|I|SUE) (defrelation ss :range Symbol) (add-value 'Joe 'ss 'Mary) ==> MARY (remove-value 'Joe 'ss 'Mary) ==> MARY (remove-value 'Joe 'xx 'Mary :no-error-p t) ==> NIL :MISSING-ROLE