Generate the
(solve-gen-f f x1...xn f-body solution-guard solution-guard-hints solution-enable verify-guards wrld) → (mv local-event exported-event)
Function:
(defun solve-gen-f (f x1...xn f-body solution-guard solution-guard-hints solution-enable verify-guards wrld) (declare (xargs :guard (and (symbolp f) (symbol-listp x1...xn) (pseudo-termp f-body) (true-listp solution-guard-hints) (booleanp solution-enable) (booleanp verify-guards) (plist-worldp wrld)))) (let ((__function__ 'solve-gen-f)) (declare (ignorable __function__)) (evmac-generate-defun f :formals x1...xn :body (untranslate f-body nil wrld) :enable solution-enable :guard solution-guard :guard-hints solution-guard-hints :verify-guards verify-guards)))