86 87/-- Decidable instance for half-integer check. -/ 88instance : DecidablePred isHalfInteger := fun s => 89 if h : s.twice % 2 = 1 then isTrue h else isFalse h 90 91/-- Decidable instance for integer check. -/ 92instance : DecidablePred isInteger := fun s => 93 if h : s.twice % 2 = 0 then isTrue h else isFalse h 94 95/-- Spin is either integer or half-integer. -/
used by (8)
From the project-wide theorem graph. These declarations reference this one in their body.