structure
definition
def or abbrev
ScalingModel
show as:
view Lean formalization →
formal statement (Lean)
7structure ScalingModel where
8 gamma : ℝ
9 f : ℝ → ℝ → ℝ
10 f_hom0 : ∀ {c t1 t2}, 0 < c → f (c * t1) (c * t2) = f t1 t2
11
12noncomputable section
13