aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/bug_14011.v
AgeCommit message (Collapse)Author
2021-03-26Add non-performance-based testJason Gross
2021-03-26Fix Ltac2 `Array.init` exponential overheadJason Gross
Previously, `Array.init` was computing the first element of the array twice, resulting in exponential overhead in the number of recursive nestings of `Array.init`. Notably, since `Array.map` is implemented in terms of `Array.init`, this exponential blowup shows up in any term traversal based on `Array.map` over the arguments of application nodes. Fixes #14011