def
definition
tauOf
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Masses.KernelTypes on GitHub at line 22.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
19inductive GenClass | g1 | g2 | g3
20deriving DecidableEq, Repr
21
22@[simp] def tauOf : GenClass → ℤ
23| .g1 => 0
24| .g2 => 11
25| .g3 => 17
26
27structure RungSpec where
28 ell : Nat
29 gen : GenClass
30
31@[simp] def rungOf (R : RungSpec) : ℤ := (R.ell : ℤ) + tauOf R.gen
32
33end Masses
34end IndisputableMonolith