Recognize the possible parameters that describe a Java implementation's support of the float-extended-exponent value set [JLS14:4.2.3].
(floatx-paramp k) → yes/no
A Java implementation
may support a float-extended-exponent value set or not.
If it does, an implementation-dependent constant
Our Java formalization is parameterized over the specifics of this support,
via the value of the nullary function floatx-param,
which is constrained to be either
Function:
(defun floatx-paramp (k) (declare (xargs :guard t)) (let ((__function__ 'floatx-paramp)) (declare (ignorable __function__)) (or (null k) (and (natp k) (>= k 11)))))
Theorem:
(defthm booleanp-of-floatx-paramp (b* ((yes/no (floatx-paramp k))) (booleanp yes/no)) :rule-classes :rewrite)