This tactic, added to the decreasing_trivial
toolbox, proves that
sizeOf arr[i] < sizeOf arr
, which is useful for well founded recursions
over a nested inductive like inductive T | mk : Array T → T
.
Instances For
This tactic, added to the decreasing_trivial
toolbox, proves that sizeOf a < sizeOf arr
provided that a ∈ arr
which is useful for well founded recursions over a nested inductive like
inductive T | mk : Array T → T
.