pith. machine review for the scientific record. sign in
inductive

AdditiveDefect

definition
show as:
view math explainer →
module
IndisputableMonolith.Materials.AdditiveManufacturingDefectsFromConfigDim
domain
Materials
line
18 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Materials.AdditiveManufacturingDefectsFromConfigDim on GitHub at line 18.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

used by

formal source

  15
  16namespace IndisputableMonolith.Materials.AdditiveManufacturingDefectsFromConfigDim
  17
  18inductive AdditiveDefect where
  19  | porosity
  20  | lackOfFusion
  21  | keyholeVoid
  22  | residualStress
  23  | surfaceRoughness
  24  deriving DecidableEq, Repr, BEq, Fintype
  25
  26theorem additiveDefect_count : Fintype.card AdditiveDefect = 5 := by decide
  27
  28structure AdditiveManufacturingDefectsCert where
  29  five_defects : Fintype.card AdditiveDefect = 5
  30
  31def additiveManufacturingDefectsCert : AdditiveManufacturingDefectsCert where
  32  five_defects := additiveDefect_count
  33
  34end IndisputableMonolith.Materials.AdditiveManufacturingDefectsFromConfigDim