Recognizes functions which calls themselves.
(direct-recursivep ident call-graph) → *
This function checks where the
Function:
(defun direct-recursivep (ident call-graph) (declare (xargs :guard (and (identp ident) (ident-ident-option-set-mapp call-graph)))) (let ((__function__ 'direct-recursivep)) (declare (ignorable __function__)) (b* ((lookup (omap::assoc ident call-graph))) (and lookup (in ident (cdr lookup))))))