lean4-htt/tests/lean/run/grind_10232.lean
Paul Reichert 89686fcd02
refactor: replace PRange shape α with Rcc α and eight other types (#10319)
This PR "monomorphizes" the structure `Std.PRange shape α`, replacing it
with nine distinct structures `Std.Rcc`, `Std.Rco`, `Std.Rci` etc., one
for each possible shape of a range's bounds. This change was necessary
because the shape polymorphism is detrimental to attempts of automation.

**BREAKING CHANGE:** While range/slice notation itself is unchanged,
this essentially breaks the entire remaining (polymorphic) range and
slice API except for the dot-notation(`toList`, `iter`, ...). It is not
possible to deprecate old declarations that were formulated in a
shape-polymorphic way that is not available anymore.
2025-10-02 06:45:11 +00:00

23 lines
604 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

inductive BoundShape where
| «open» : BoundShape
| closed : BoundShape
| unbounded : BoundShape
structure RangeShape where
lower : BoundShape
upper : BoundShape
abbrev Bound (shape : BoundShape) (α : Type u) : Type u :=
match shape with
| .open | .closed => α
| .unbounded => PUnit
def U {shape : RangeShape} (b : Bound shape.upper α) : Unit := sorry
structure T (l : α) : Type u where
def mysorry : α := sorry -- instead of `mysorry`, we could also use `sorry`.
example (inv : (T (U (shape := ⟨.closed, .closed⟩) 1)) → Prop)
(h : inv mysorry) : True := by
grind