lean4-htt/tests/elab
Leonardo de Moura cfa8c5a036
fix: handle universe level commutativity in sym pattern matching (#12923)
This PR fixes a bug where `max u v` and `max v u` fail to match in
SymM's pattern matching. Both `processLevel` (Phase 1) and
`isLevelDefEqS` (Phase 2) treated `max` positionally, so `max u v ≠ max
v u` structurally even though they are semantically equal.

The fix has three parts:
- Eagerly normalize universe levels in patterns at creation time
(`preprocessDeclPattern`, `preprocessExprPattern`,
`mkSimprocPatternFromExpr`)
- Normalize the target level in `processLevel` before matching, using a
`where go` refactor
- Add `tryApproxMaxMax` to `processLevel` and `isLevelDefEqS`: when
positional `max/max` matching would fail, check if one argument from
each side matches structurally and match the remaining pair

Also moves `normalizeLevels` from `Grind.Util` to `Sym.Util` to avoid
code duplication, since both Sym and Grind need it.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 01:06:16 +00:00
..
readDir.lean.dir chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
.gitattributes chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
28.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
29.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
34.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
52_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
91_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
102_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
108.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
111.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
121.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
125.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
175.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
220.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
220.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
223.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
223.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
229.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
229.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
236.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
236.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
262.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
269.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
270.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
280.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
281.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
282.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
303.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
305.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
307.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
307.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
310.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
319.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
326.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
327.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
329.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
335.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
337.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
337.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
338.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
338.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
341.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
343.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
345.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
366.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
366.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
382.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
382.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
387.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
394.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
394.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
414.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
414.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
415.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
415.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
421.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
421.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
435b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
436.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
436_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
439.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
439.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
441.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
445.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
445.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
447_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
447_lean3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
452.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
456.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
457.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
457.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
461a.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
461b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
462.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
463.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
469.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
469.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
470_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
471.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
474.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
474.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
474_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
474_lean3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
481.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
482.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
490.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
492.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
492_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
492_lean3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
498.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
498.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
500_lean3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
500_lean3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
501.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
501.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
509.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
529.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
529.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
536.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
561.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
569.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
602.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
602.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
604.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
604.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
616.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
620.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
620.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
625.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
625.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
633.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
644.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
646.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
646.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
654.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
664.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
677.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
679.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
679.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
696.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
714.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
714.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
716.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
753.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
760.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
764.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
764.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
783.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
788.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
790.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
793.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
796.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
801.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
801.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
813.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
813.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
815.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
815b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
815b.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
821.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
837.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
847.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
854.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
854.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
860.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
879.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
891.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
909.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
944.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
945.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
946.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
948.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
948.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
951.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
951.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
955.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
968.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
972.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
973.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
973b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
973b.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
974.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
983.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
983.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
986.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
988.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
988.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
998.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
998Export.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
1016.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1017.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1017.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1018.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1020.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1021.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1021.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1022.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1024.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1024.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1025.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1025.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1026.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1026.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1027.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1027.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1029.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1030.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1037.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1039.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1039.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1051.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1051.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1058.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1074a.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1080.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1080.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1098.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1098.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1112.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1113.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1113.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1113b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1113b.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1118.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1120.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1123.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1124.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1127.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1127.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1132.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1143.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1155.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1156.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1158.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
1163.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1163.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1168.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1169.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1171.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1171.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1179b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1179b.lean.out.expected perf: fuse fvar substitution into instantiateMVars (#12233) 2026-03-09 17:05:21 +00:00
1182.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1184.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1192.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1193a.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1193b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1194.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1200.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1202.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1206.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1224.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1228.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1228.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1230.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1230.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1234.lean feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
1235.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1235.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1236.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1237.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1237.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1247.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1253.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1267.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1267.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1274.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1275.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1275.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1279.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1279.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1279_simplified.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1279_simplified.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1289.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1289.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1292.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1292.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1293.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1298.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1298.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1299.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1300.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1302.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1305.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1308.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1308.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1311.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1321.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1321.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1333.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1337.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1342.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1342.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1359.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1360.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1361.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1361.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1361b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1361b.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1363.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1365.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1367.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1367.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1372.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1373.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1374.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1375.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1375.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1377.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1377.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1380.lean feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
1380.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1385.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1385.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1389.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1408.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1408.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1411.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1419.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1419.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1420.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1426.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1426.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1435.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1435.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1436.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1441.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1547.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1549.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1558.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1571.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1571.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1575.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1615.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1650.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1650.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1668.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1668.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1674.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1679.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1681.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1681.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1684.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1684.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1686.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1692.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
1697.lean feat: have #eval elaborate variables (#11427) 2026-03-09 04:52:08 +00:00
1711.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1725.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1730.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1763.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1763.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1779.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1779.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1780.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1785.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1787.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1804.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1804.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1808.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1812.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1812.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1813.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1813.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1815.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1815.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1822.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1829.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1834.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1841.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1842.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1842.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1848.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1850.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1851.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1852.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1856.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1856.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1869.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1870.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1878.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1878.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1882.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1883.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1886.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1891.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1891.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1892.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1892.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1900.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1901.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1901.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1907.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1907orig.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1910.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1918.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1921.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1926.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1926.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1937.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1951.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1954.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1963.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1963.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1968.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1985.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1986.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
1986.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2005.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2005.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2009.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2018.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2018.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2042.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2044.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2045.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2045.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2058.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2073.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2074.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2077.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2077.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2079.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2079.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2095.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2115.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2115.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
2136.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2136.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2137.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2143.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2159.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2161.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2173.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2178.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2182.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2186.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2188.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2199.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2220.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2226.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2243.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2249.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2262.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2265.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2265.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2282.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2283.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2283.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2291.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2291.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2299.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2311.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2344.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2361.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2461.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
2500.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2505.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2505.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2514.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2552.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2558.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2558.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2575.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2602.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2611.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2615.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2649.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2649.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2669.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2669.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2670.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2672.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2689.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2690.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2710.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2736.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2736.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2810.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2835.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2843.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2843.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2846.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2846.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2862.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2899.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2899.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2901.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2905.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2914.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2916.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2939.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2942.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
2966.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3022.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3022.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3031.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3045.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3057.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3057.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3079.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3091.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3091.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3140.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3140.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3146.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3150.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3214.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3219.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3229.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3242.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3257.lean feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
3257.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3313.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3386.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3395.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3458_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3458_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3467.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3497.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3501.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3519.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3524.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3524.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3546.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3547.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3554.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3643.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3686.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3705.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3705.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
3706.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3710.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3713.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
3731.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3740.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3745.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3791.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3807.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3807.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3922.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3943.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3943.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3965.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3965.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
3965_2.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
3965_2.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
3965_3.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
3965_3.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
3996.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4051.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4051.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4064.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4086.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4086.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4089.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4089.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4101.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4144.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4171.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
4171.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
4203.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
4213.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4219.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4230.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4240.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4240.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4251.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4278.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4290.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4290.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4306.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4310.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4313.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4318.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4320.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4334.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4339.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4365.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4375.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4381.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4390.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4390.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4398.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4405.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4406.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4413.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4452.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4452.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4462.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4462.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4465.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4534.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4547.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4555.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4561.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4573.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4585.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4585.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4591.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4591.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4595_slowdown.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4595_slowdown.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4595_split.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4595_split.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4636.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4636.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4644.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4662.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4670.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4673.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4673.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4677.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4686.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4716.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4751.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4761.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4761.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4768.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4773.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4845.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4845.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4851.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4861.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4861.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4888.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4920.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4928.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4947.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4983.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
4985.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5046.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5046.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5064.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5126.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5176.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
5236.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5333.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5333.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5359.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5359.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5388.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5406.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5407.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5417.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5424.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5455.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5455.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5475.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5565.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5634.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5660.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5664.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5667.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5668.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5672.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5674.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5689.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5755.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5755.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
5818.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
5993.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6043.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6065.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6065.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6067.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6067.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6086.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6090.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6117.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6123_cat_adjunction.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
6123_cat_adjunction.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
6123_mod_cast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6123_mod_cast.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6164.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6199.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6263.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6263.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6332.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6354.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6373.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6400.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6467.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6467.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6601.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6655.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6694.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6706.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6759.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6789.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6927.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6957.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
6999.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7073.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7096.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7170.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7353.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7405.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7458.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7475.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7612.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7612.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7638.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7788.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7811.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7927.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
7993.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
8049.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
8067.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
8721.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
8815.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
8894.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
8938.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9089.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9156.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9312.lean chore: use terminology "non-recursive structure" instead of "struct-like" (#12749) 2026-03-09 03:44:38 +00:00
9322.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9322.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9362.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9363.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9365.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9366.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9389.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9445.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9474.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9541.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9581.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9591.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9624.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
9692.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9806.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9806.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9937.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9963.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
9971.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10067.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
10078.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10078.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10172.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10172.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10181.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10196.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10213.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10234.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10234.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10443.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10475.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10564.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10577.lean fix: kernel: move level parameter count and thm-is-prop checks for robustness (#12817) 2026-03-05 17:03:01 +00:00
10687.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10687.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10771.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
10850.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
10934.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11115.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11322.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11337.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11389.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11509.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11687.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11719.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11747.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11773.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11778.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
11823.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12025.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12048.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12136.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12138.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12172_regression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12215.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12215.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12334.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12386.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12457.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
12559.lean fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
12563.lean fix: make the omit, unusedSectionVars and loopingSimpArgs linter respect linter.all (#12563) 2026-03-09 11:58:02 +00:00
12676.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
abst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
abst.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
abstractExpr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
abstractMVars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ac_expr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ac_expr.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
ac_rfl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ac_rfl.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ack.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ACltBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
adam1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
adam1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
adamTC.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
adamTC2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
add_suggestion.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
addDecorationsWithoutPartial.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
addPPExplicitToExposeDiff.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
aesop_run_metam.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
aig_optimizations.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
aig_stress.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
alex1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
alex1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
alg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
alias.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
allFieldForConstants.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
allFieldForConstants.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
allGoals.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
and_intros.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
andCasesOnBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
anonymous_ctor_error_msg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
anonymousCtor.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
appFinalizeIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
appFinalizeIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
appIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
apply_error.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
apply_tac.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
applytransp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
appParserIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
appParserIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
approxDepth.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
approxDepth.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
array1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
array1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
array_isEqvAux.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
array_simp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
arrayDecEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
arrayGetU.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
arrayGetU.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
arrowDot.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
arthur1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
arthur2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
arthur2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
as_aux_lemma.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
assertAfterBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
assertAfterBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
assertExists.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
aStructPerfIssue.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
async.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_base_functions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_cancellation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_cancellation_reasons.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_dns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_http_encode.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
async_http_string_quoting.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
async_select_channel.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_select_socket.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_select_socket.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_select_timer.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_sleep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_streammap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_surface_sleep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_systems_info.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_systems_info.lean.out.ignored chore: fix ci for new test suite (#12704) 2026-02-27 23:25:37 +00:00
async_tcp_fname_errors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_tcp_half.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_tcp_server_client.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
async_udp_sockets.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
atomValidation.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
attachJp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
attachJp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
attributeErrors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoboundIssues.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoboundIssues.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoImplicitChain.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoImplicitChain.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoLift.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoLiftIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoparam.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
autoparam.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
auxinvariable.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
auxParentProj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
auxParentProj.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
backtrackable_estate.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
balg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
baseIO.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
baseIO.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
betaSimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bhaviksSampler.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
bhaviksSampler.lean.out.expected chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
bigctor.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bigFromJson.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bigmul.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bigop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bigop.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bindCasesIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bindCasesIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binder_predicates.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binder_predicates.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderCacheIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderCacheIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderCacheIssue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderCacheIssue2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderNameHint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderNameHint_congr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderNameHintScope.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderNameHintSimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderNotation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binderNotation.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bindersAbstractingUnassignedMVars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bindersAbstractingUnassignedMVars.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binop_binrel_perf_issue.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
binop_binrel_perf_issue.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
binop_lazy.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binop_lazy.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binopInfoTree.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binopInfoTree.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binrec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binrec.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binrel.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binrel_binop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binrel_binop.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binrelmacros.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binrelmacros.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binsearch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
binsearch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bintreeGoal.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bintreeGoal.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bitvec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bitvec_fin_literal_norm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bitvec_fin_literal_norm.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bitvec_simproc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bitwise.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bitwise.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bool2int.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bool2int.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bool_simp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
borrowBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
boxing_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
broadcast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bubble.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bugNatLitDiscrTree.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
builtinInitStx.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
builtinSimprocTrace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
builtinSimprocTrace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_arith.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_axiom_check.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_bitblast_stress.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_bitwise.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_cast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_counterexample.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_bool.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_enum_dependent.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_enum_universe.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_enums_two.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_nat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_rewriter.lean feat: add bitblasting circuit for BitVec.cpop (#12433) 2026-03-02 13:38:04 +00:00
bv_decide_rewriter.lean.out.expected feat: add bitblasting circuit for BitVec.cpop (#12433) 2026-03-02 13:38:04 +00:00
bv_decide_rewriter_ac_nf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_shift_error.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_shift_to_nat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_decide_solver_modes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_enums.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_errors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_extract.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_inequality.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_llvm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_math_lit_perf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_math_lit_perf.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_parametric_struct.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_popcount.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_preprocess_stress.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_reflection_stress.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_relation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_shift.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_sint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_structures.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_substructure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_uint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_uninterpreted.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_unused.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bv_will_overflow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bvarcrash.lean fix: kernel: move level parameter count and thm-is-prop checks for robustness (#12817) 2026-03-05 17:03:01 +00:00
by_cases.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
byAsSorry.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
byCasesMetaM.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
byCasesMetaM.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bytearray.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
bytearray.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
byteslice.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
byteSliceIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
byteSliceIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cacheIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cacheIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
calc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
calc.lean.out.expected fix: make the omit, unusedSectionVars and loopingSimpArgs linter respect linter.all (#12563) 2026-03-09 11:58:02 +00:00
calcBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
calcInType.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cancellation_context.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
canonM_exists_fun.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casePrime.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casesAnyTypeIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casesOnAcc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casesOnCases.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casesOnSameCtor.lean perf: handle match_same_ctor.het similar to matchers in compiler (#12850) 2026-03-09 22:02:06 +00:00
casesRec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casesTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casesUsing.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
casesUsing.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
caseTacInMacros.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
catchThe.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cbv1.lean fix: make cbv_opaque take precedence over cbv_eval (#12908) 2026-03-13 14:52:33 +00:00
cbv2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cbv3.lean feat: add cbv at location syntax (#12773) 2026-03-03 16:12:07 +00:00
cbv4.lean test: move cbv tests to appropriate directories (#12791) 2026-03-04 15:53:05 +00:00
cbv_array.lean feat: add cbv simprocs for arrays (#12875) 2026-03-11 11:03:22 +00:00
cbv_at.lean feat: add cbv at location syntax (#12773) 2026-03-03 16:12:07 +00:00
cbv_classical.lean fix: cbv handling of ite/dite/decide (#12816) 2026-03-06 16:18:39 +00:00
cbv_decidable_congr.lean fix: cbv handling of ite/dite/decide (#12816) 2026-03-06 16:18:39 +00:00
cbv_decide_simproc.lean feat: add cbv at location syntax (#12773) 2026-03-03 16:12:07 +00:00
cbv_dep_proj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cbv_eval_erase.lean feat: allow erasing cbv_eval attributes (#12851) 2026-03-10 09:40:19 +00:00
cbv_eval_erase.lean.out.expected feat: allow erasing cbv_eval attributes (#12851) 2026-03-10 09:40:19 +00:00
cbv_eval_inv.lean fix: make cbv_opaque take precedence over cbv_eval (#12908) 2026-03-13 14:52:33 +00:00
cbv_ite_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cbv_max_steps.lean feat: add cbv.maxSteps option to control step limit (#12788) 2026-03-04 16:05:57 +00:00
cbv_nullary.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cbv_opaque_guard.lean fix: make cbv_opaque take precedence over cbv_eval (#12908) 2026-03-13 14:52:33 +00:00
cbv_proj_arg_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cbv_proj_arg_bug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cbv_simproc.lean feat: add cbv_simproc infrastructure for user-extensible cbv simplification procedures (#12597) 2026-03-10 10:59:13 +00:00
cbv_simproc_errors.lean feat: add cbv_simproc infrastructure for user-extensible cbv simplification procedures (#12597) 2026-03-10 10:59:13 +00:00
cbv_simproc_fib.lean feat: add cbv_simproc infrastructure for user-extensible cbv simplification procedures (#12597) 2026-03-10 10:59:13 +00:00
cbv_string.lean feat: add String simprocs to cbv (#12888) 2026-03-12 11:52:06 +00:00
cceScoping.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cdotAtSimpArg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cdotTests.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cdotTuple.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cdotTuple.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
change.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
charQuote.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
charrange.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
check.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
check_failure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
check_failure.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
checkAssignmentIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
choiceExpectedTypeBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
choiceExpectedTypeBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
choiceMacroRules.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
choiceMacroRules.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
class_inductive.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
class_inductive.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
classAbbrev.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
classDefReducibilityAfterAttr.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
classical.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cleanup_forallTelescope.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cleanupTypeAnnotations.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
clear_value.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
closure1.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
codeBindUnreachIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
codeBindUnreachIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coe.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coe.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeAttr1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeAttr1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeAttrs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeIssue1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeIssue1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeIssue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeIssue2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeIssue3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeIssue3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeIssues4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coelambda.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeM.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeM.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
CoeNew.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
CoeNew.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeOutParamIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeOutParamIssue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeOutParamIssue2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeSort1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeSort2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coeSort2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coinductive_instance.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coinductive_instance.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coinductive_predicates.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coinductive_predicates_errors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
coinductive_syntax.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
collectAxioms.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
collectLooseBVars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
combinatorsAndWF.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
CommandExtOverlap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
compatibleTypesEtaIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
compatibleTypesEtaIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
compiler_bug_neutral.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
compiler_disable_borrow_annotations.lean feat: option to ignore borrowing annotations completely (#12886) 2026-03-11 20:59:06 +00:00
compiler_erase_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
compiler_proj_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
compiler_push_proj.lean feat: non exponential codegen for reset-reuse (#12665) 2026-02-26 09:35:45 +00:00
compiler_type_transparency.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
computedFields.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
computedFieldsCode.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
computedFieldsCode.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
concatElim.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrReserved.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrSimpBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrSimpDeclKinds.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrSimpMathlibIssue.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
congrTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrThm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrThm.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrThm2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrThm3.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
congrThmIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
congrThmIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constant_fold_task_get_pure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constantCompilerBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constantCompilerBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constDelab.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constDelab.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constFun.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constFun2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constProp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
constProp.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
constructor_as_variable.lean chore: constructorNameAsVariable linter respects linter.all (#4966) 2026-03-03 00:20:21 +00:00
consumePPHint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
consumePPHint.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
context_async.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
contra.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
contradiction1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
contradictionExfalso.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
contradictionLoop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
conv1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
conv2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
conv_arg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convcalc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convClear.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convInConv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convInConv.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convPatternAtLetIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convPatternAtLetIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convPatternMatchIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convPatternMatchIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convZetaLetExt.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
convZetaLetExt.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
core.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
crashDiv0.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
crlfToLf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
csimp_type_error.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
csimpAttrAppend.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
csimpAttrAppend.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
csimpAttrFn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
csimpCore.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctor_layout.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctor_layout.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctorAutoParams.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctorAutoParams.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctorElim.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctorFieldVisibilityHints.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctorIdx.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctorIdxHInj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ctorMixedRelevance.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
currentDir.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
currentDir.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
customEliminators.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
cutsat_lia_deprecation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Daniel1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dateTimeOrd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dbgMacros.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dbgMacros.lean.init.sh chore: migrate pkg tests (#12889) 2026-03-11 18:55:46 +00:00
dbgMacros.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
deBruijn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decAuxBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decClassical.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decEqMutualInductives.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decEqMutualInductives.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decEqNonInjIndex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decidability_timeout.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Decidable-decide-erasure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decide_cbv1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decide_cbv_errors.lean feat: add simpDecideCbv simproc for cbv decide (#12766) 2026-03-03 14:24:14 +00:00
decidelet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decideNative.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decideNative.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decideNativePanic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decideNativePanic.lean.init.sh chore: migrate pkg tests (#12889) 2026-03-11 18:55:46 +00:00
decideNativePanic.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decideTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decideTacticKernel.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decimals.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decimals.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
declareConfigElabBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
declareConfigElabIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
decreasingTacticUpdatedEnvIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
deep1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def6.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def6.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def7.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def8.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def9.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def10.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def11.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def12.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def13.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def14.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def15.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def16.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def17.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def18.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def19.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
def20.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defaultEliminator.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defaultInstanceWithPrio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defaultInstanceWithPrio.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defaultInstBacktrackIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defaultInstBacktrackIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defaultValueParamIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
DefEqAssignBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defeqAttrib.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
defEqVsWhnfI.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabConst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabDoLetFun.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabDoLetFun.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabName.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabOverApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabOverApp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabProjectionApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabStdRange.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabStructInst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabUnexpand.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
delabUnexpand.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
deltaRedIndPredBelow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
demangling.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
depElim1.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
depElim1.lean.out.expected perf: fuse fvar substitution into instantiateMVars (#12233) 2026-03-09 17:05:21 +00:00
depFieldIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
depFieldIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
depHd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
deq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
deriv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
deriving_diamond_defeq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingBEq.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
derivingBEqLinear.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
derivingDecidableEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingDecidableEq.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingDecidableEq2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingDecidableEqLinear.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingDelta.lean fix: deriving instance should not require noncomputable for Prop-valued classes (#12789) 2026-03-04 13:26:20 +00:00
derivingHashable.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingHashable.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingHashable2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingInhabited.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
derivingNonempty.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
derivingReflBEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingRepr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
derivingRpcEncoding.lean feat: update RPC wire format (#12905) 2026-03-13 23:46:16 +00:00
derivingRpcEncoding.lean.out.expected feat: update RPC wire format (#12905) 2026-03-13 23:46:16 +00:00
derivingToExpr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diagnostics.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diagnosticsMsgOptional.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diagRec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond4.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond6.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond6.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond7.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond7.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond8.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond8.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond9.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond9.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond10.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond10.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond11.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond12.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diamond13.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
diff.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrRefinement.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrRefinement2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrRefinement3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrTreeIota.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrTreeIota.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrTreeKey.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrTreeKey.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrTreeOffset.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrTreeSimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
discrTreeSimp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
divExact.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
do_eqv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
do_eqv_proofs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
do_for_loop_compiler_test.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
do_for_loop_levenstein_compiler_test.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
docstringRewrites.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doElemAsTermNotation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doElemControlInfoAttribute.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doForInvariant.lean fix: quantify over α before ps in PostCond definitions (#12708) 2026-02-26 16:00:00 +00:00
dofun_prec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doIfLet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doIfLet.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doLetArrowPatExpectedType.lean feat: support expected type annotation in doPatDecl (#12866) 2026-03-10 11:42:03 +00:00
doLetElse.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
doLetElseIndent.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dollarProjIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doLogicTests.lean feat: add withEarlyReturnNewDo variants for new do elaborator (#12881) 2026-03-11 10:44:34 +00:00
doMatchDependent.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doMatchDiscrDep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doNotation1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doNotation2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doNotation3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doNotation4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doNotation5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doNotation6.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
doNotation6.lean.out.expected chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
Dorais1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Dorais1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dotNameIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dotNotationAndDefaultInstance.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dotNotationRecDecl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doTrailingAtEOI.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dottedCtorNamedArgPattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dottedIdentNotation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dottedNameBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
double_match.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doubleReset.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
doubleReset.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimp1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimp2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimp_bv_simproc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimp_instances.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimp_proofs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimpNatLitIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimproc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimpZetaIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dsimpZetaIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
due_to_metavariables.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
duplicatedArgumentApplicationTypeMismatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dvd_simproc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
DVec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
DVec.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
dynamic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eagerCoeExpansion.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eagerCoeExpansion.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eagerInliningIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elab_cmd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elab_cmd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elabAsElim.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elabAsElim.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elabCmd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elabIte.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elabLet.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
elabToSyntax.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elim_dead_vars.lean feat: non exponential codegen for reset-reuse (#12665) 2026-02-26 09:35:45 +00:00
elimDeadBranchesCtorParams.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elimDeadBranchesUInt64Literal.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elimDeadBranchesUInt64Literal.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eliminatorImplicitTargets.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elimOptParam.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elseCaseArrow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
elseIfConfusion.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
emptycOverloadIssues.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
emptyEnvVar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
emptyLcnf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
endErrors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
enumDecEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
enumNoConfusionIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
enumsModuloIrrelevance.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eq_some_iff_get_eq_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqndrecEtaLCNFIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqndrecEtaLCNFIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnOptions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsAtSimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsAtSimp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsAtSimp2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsAtSimp3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsAtSimp3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsPrio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsProjections.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqnsReducible.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqRecursors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqTheoremForVec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqThm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqThm.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqThmWithMoreThanOneAsPattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eqValue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
erased.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eraseReps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eraseSimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eraseSimp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eraseSuffix.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
erasureConfusion.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
errorExplanationElab.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
errorExplanationLinting.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eta.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eta_lambda_lift.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
etaFirst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
etaReducedMvarAssignments.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
etaReducedMvarAssignments.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
etaStruct.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
etaStruct.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
etaStructProofIrrelIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
eval.lean feat: have #eval elaborate variables (#11427) 2026-03-09 04:52:08 +00:00
eval_unboxed_const.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalBuiltinInit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalCmd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalCmd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalconst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalDo.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalInit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalInit.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalProp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
evalTacticBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exact_private.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exact_rw_deprecated.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exfalsoBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exists.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
expandAbbrevAtIsClass.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
expandExplicitBinders.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
expandExplicitBinders.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
expandWhereStructInstIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
expectedTypePropagation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
explicitApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
explicitApp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
explicitMotive.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
explicitOpenDeclIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
explicitOpenDeclIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exposeDiff.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exposeNames.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exposeNames.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
expr1.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
expr_maps.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
ExprLens.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ext.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ext1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ext1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
extensibleTacticBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
extern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
externBoxing.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
externBoxing.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exthashset_deceq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
extmacro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
extract.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
extract.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
extract_array_lit.lean perf: non quadratic closed term initialization for closed array literals (#12715) 2026-02-27 08:37:12 +00:00
extract_lets.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
extractClosed.lean perf: non quadratic closed term initialization for closed array literals (#12715) 2026-02-27 08:37:12 +00:00
extraModUses.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exttreeset_deceq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
exttreeset_deceq.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
false_or_by_contra.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
falseElimAtSimpLocalDecl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fib_correct.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
fieldAbbrevInPat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fieldAutoBound.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fieldDefaultValueWithoutType.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fieldIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fieldNamesWithMinus.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fieldTypeBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fieldTypeBug.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
filePath.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
filePath.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
filter.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fin_coercions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fin_two_pow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
finally.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
finDotCtor.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
finLit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
finMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedIndexToParamIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedIndexToParamIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedIndicesToParams.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedIndicesToParams.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedParams.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedParamsAnnot.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedParamsDep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedParamsReorder.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fixedParamsStructDeps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
flat_expr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
float1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
float32.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
float_cases_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
float_conversions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
float_from_bignum.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
floatarray.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
floatBits.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
floatLetIn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
floatOptParam.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
foApprox.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fold_uint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
foldConsts.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
foldLits.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
foldLits.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
foldlUnsafe_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
foldProjs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
foldProjs.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forallMetaBounded.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forallMetaBounded.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forBodyResultTypeIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forIn_phashset.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forInColErr.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
forInElabBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forInListSpecUnivPoly.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forInListSpecUnivPoly.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forInPArray.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forInRangeWF.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forInReturnPropagation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forInUniv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Format.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Format.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
formatHardLineBreaks.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
formatTerm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
formatTerm.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
formatterTokenTable.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forOutParamIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forOutParamIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
forParallel.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
french_ident.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
french_quote.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
frontend_meeting_2022_09_13.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
frontend_meeting_2022_09_13.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fun.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fun.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fun_cases.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funext.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_demo.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_expr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_fewer_levels.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_mutual_dep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_proof.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_structural.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_structural_mutual.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_tests.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funind_unfolding.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funInduction.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funinduction_generalize.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funinduction_ident.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funInfoBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funInfoBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
funMatchIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
fvarSubset.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
gcd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
gcd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
generalize.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
generalizeMany.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
generalizeTelescope.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
genindices.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
getArgPrime.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
getline_crash.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
getline_crash.lean.after.sh chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grandparentImplicitReducible.lean fix: set implicitReducible on grandparent subobject projections (#12701) 2026-03-01 06:39:17 +00:00
grind_9216.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9321.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9427.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9467.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9477.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9485.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9485.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9562.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9572.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9610.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9769.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9825.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9828.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9830.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9854.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9856.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9856.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9897.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9899.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9907.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_9948.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10160.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10160.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10232.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10232.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10233.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10233.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10317.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10489.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10500.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10622.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10622.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10661.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10670.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10885.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10953.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_10983.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11001.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11001.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11036.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11081.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11081.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11086.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11086.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11088.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11124.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11124.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11130.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11130.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11134.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11134.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11259.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11449.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11477.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11498.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11498.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11515.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11539.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11539_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11545.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11545.lean.out.expected fix: make the omit, unusedSectionVars and loopingSimpArgs linter respect linter.all (#12563) 2026-03-09 11:58:02 +00:00
grind_11597.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11597.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11622.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11633.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11690.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11690.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11697_a.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11697_b.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11738.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11745.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11745_extra.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_11930.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_12140.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_12246.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_12246.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_12390.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_12428.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_12428.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_abstract_mvars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ac_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ac_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ac_3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ac_4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ac_5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_activate_local_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_all_singleton_patterns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_alphaShare_builder.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_annotated.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_append_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_append_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_arbitrary_params.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_arith_nonstd_insts.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_array.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_array_attach.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_assoc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_assoc.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_attrs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_attrs.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_beta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_big_poly.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_bigstep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_bintree.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_bintree.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_bitvec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_bool_diseq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_bool_prop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_bug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_bug_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_insts.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_insts.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_ofnat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_ofnat.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_types.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_canon_types.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cases.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cases_tac.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cases_tac.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_casting_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cat2.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
grind_cat2.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
grind_clean_den.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_clear_error.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_clear_error.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_commsemiring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_congr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_congr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_congr1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_congr1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_congr_hash_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_congr_over_applied.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_const_pattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_const_pattern.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_constProp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_constProp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_countP.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ctor_ematch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ctor_ematch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ctorIdx.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_auto.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_auto.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_commring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_cooper.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_cooper.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_decompose.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_cooper.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_diseq_cooper.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_div_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_div_1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_div_mod.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_div_mod.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_eq_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_eq_1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_instances.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_le_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_le_1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_le_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_le_2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_nat_dvd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_nat_dvd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_nat_eq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_nat_eq.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_nat_le.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_nat_le.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_natCast_propagation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_omega.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_pow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_proof_term_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_tests.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_tests.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_toint_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_trim_context.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_upper_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_upper_bug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_cutsat_zero.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_decide_bool_issues.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_decide_bool_issues.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_dep_match_overlap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_diseq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_diseq_cancel_var_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_dvd_propagate_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_dvd_propagate_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_gen_pattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_gen_pattern.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_ground_implicit_inst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_patterns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_patterns.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_theorem_activation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_theorem_activation.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ematch_type_error.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq_bwd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq_bwd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq_bwd_pat_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq_bwd_pat_bug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq_false_of_imp_eq_false.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq_false_of_imp_eq_false.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eq_pattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eqres_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_erase_attr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_erase_attr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eta_struct_internalize.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eta_struct_internalize.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_etaStruct.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eval_suggest.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_eval_suggest.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_exfalso.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ExtTreeSet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_fastEraseDups.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_field_div.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_field_norm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_field_norm_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_field_panic.lean feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
grind_field_panic.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_fin.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_fin_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_fin_zero.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_finish_trace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_finish_trace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_finVal.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_fun_singleton.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_funCC.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_funext.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_getElem.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_getElem.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_getLast_dropLast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ground_pat_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ground_pat_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ground_thm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_guide.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_guide.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_guide_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_guide_2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_hashmap_list.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_hashmap_list.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_hcongr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_heapsort.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_heapsort.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_heartbeats.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_heartbeats.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_heq_proof_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_human_eval_114.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_hyper_ex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ignore_impl_detail.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_implies.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_indexmap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_indexmap_pre.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_indexmap_pre.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_indexmap_trace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_indexmap_trace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_inj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_inj2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_inj2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_inj_clear_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_inst_mvars_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_inst_mvars_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_intcast_natcast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_interactive.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_interactive.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_interactive_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_interactive_2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_internalize_bitvec_lit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_internalize_bitvec_lit.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_intmodule_eq_prop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_issue_9125.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_issue_9187.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite_congr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite_parent.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite_split_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite_trace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite_trace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite_unused_match.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ite_unused_match.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lawful_eq_cmp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lax.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lax.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lazy_ite.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lazy_ite.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linarith_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linarith_1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linarith_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linarith_2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linarith_rational.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linarith_spurious_issues.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linarith_trim_context.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_linearize.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_array.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_bitvec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_list.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_misc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_std_hashmap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_std_misc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lint_std_treemap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_count.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_drop_take.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_erase.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_find.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_perm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_list_sublist.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_local_hyps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_locals.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_locals_module.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lookahead.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_lookahead.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_many_eqs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_map.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mark_nested_proofs_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match_cond_contra.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match_cond_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match_cond_split.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match_eq_propagation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_match_with_eq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mbtc_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mbtc_1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mbtc_bad_splits.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_min.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_module_eqs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_module_normalization.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_module_relations.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mon_order.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mon_order.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mvar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mvar.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_mvar_hyps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nat_bitwise.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nat_module.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nat_module_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nat_module_norm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nat_semiring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nat_sub_encoding.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_natCast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_natCast_intCast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_natCast_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_natCast_nonneg_ring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nested_mdata.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nested_proof_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nested_proofs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nested_proofs.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nochrono.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_noncomm_ring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_noncomm_semiring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nonforall_params.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_nonlinear_occ_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_norm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_norm_levels.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_offset.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_offset.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_omega_examples.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_omega_tests.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_one_mul.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_one_mul.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_option.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ord_module.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_order_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_order_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_order_3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_order_eq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_order_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_order_propagation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_over_applied_nestedProof.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_overapplied_ite.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_overapplied_ite.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_palindrome2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_palindromes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_palindromes.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_panic_invariant.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_panic_invariant.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_params.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_params.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pat_sel.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern_cnstr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern_cnstr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern_cnstr_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern_inference_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern_proj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern_scoped.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pattern_validation_instance.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_Poly_mul_0_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pow_add_semiring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pow_inst_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pow_inst_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pow_zero.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pp_attr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pre.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_pre.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_preinstance_set_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_preinstance_set_bug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_preord_module.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_primes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_prod.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_product_eta_and_split.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_proof_perf_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_prop_arrow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_prop_arrow.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_proveEqIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_proveEqIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_qsort.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_qsort.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
grind_question_mark_suggestions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_rat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_reducible.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_reducible.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_refl_cmp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_regression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_regression.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_norm_ring_proof.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_op_sanity_checks.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_ring_trim_context.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_section_var.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
grind_semiring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_semiring_norm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_semiring_norm_regression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_semiring_norm_regression.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_set_config.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_set_config.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_shelf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_smul_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_som1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_sort_eqc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_sort_eqc.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_sort_intern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_split.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_split.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_split_arith_imp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_split_arith_imp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_split_data.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_split_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_split_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_spoly.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_suggestions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_sym_prio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_sym_prio.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_t1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_t1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_toint_instances.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_toint_instances.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_toInt_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_toInt_mbtc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_trace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_trace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_trace_local_dot_notation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_trace_term_params.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_trig.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_trig.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_try_exact.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_try_exact.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_try_extend.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_try_trace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_try_trace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_unfold_reducible_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_unfold_reducible_regression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_unfold_reducible_regression.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_univ_poly_ground_pattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_universe_polymorphism.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_unnecessary_hypothesis.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_unused_lemmas.lean feat: add grind.unusedLemmaThreshold option to report unused E-matching activations (#12805) 2026-03-10 02:57:37 +00:00
grind_usr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_usr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_vector.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grind_warn_param.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
grindDeprecated.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
gring_11543.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
gring_11543.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
guard_expr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guard_msgs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guard_msgs.lean.init.sh chore: migrate pkg tests (#12889) 2026-03-11 18:55:46 +00:00
guardexpr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guessLex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guessLex.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guessLexTricky.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guessLexTricky.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guessLexTricky2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
guessLexTricky2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
handleLocking.lean chore: fix ci for new test suite (#12704) 2026-02-27 23:25:37 +00:00
handleLocking.lean.after.sh chore: fix ci for new test suite (#12704) 2026-02-27 23:25:37 +00:00
hashableBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hashmap-implicits.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hashmap-toList-simps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hashmap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hasNotBit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
haveDestruct.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
haveI.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
haveI.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
haveTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hcongr.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
hcongr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
heapSort.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
heapSort.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
heqSubst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hexnum.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hinj_thm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hintPreviewSpan.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hintSuggestionMessage.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hintWordDiff.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hlistOverload.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hmul2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hmul2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hmulDefaultInstance.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hmulDefaultInstance.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hpow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
hpow.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
idbg_basic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
idbg_e2e.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
idbg_e2e.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
idSuggestEvery.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
idSuggestPostHoc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
idSuggestShort.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
idSuggestStandalone.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ifcongr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ifcongr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
iffRefl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ifThenElseIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ifThenElseIssue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
impByNameResolution.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
impLambdaTac.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
implDetailBinder.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
implicitApplyIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
implicitLambdaLocalWithoutType.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
implicitRflProofs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
implicitTypesRecCoe.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
importStructure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inaccessibleAnnotDefEqIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inaccessibleAnnotDefEqIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
incmd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
incmd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ind_cmd_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ind_whnf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ind_whnf2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
index_variables_linter.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
indPredRecursion.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
induction1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductionAltExplicit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductionCheckAltNames.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductionComplexMotive.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductionLetIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductionParse.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductionTacticBug.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
inductive1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive_mutual.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive_pred.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive_pred.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
inductive_rec_proj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive_typestar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductive_univ.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductiveBinderUpdates.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductiveIndicesIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inductiveParamMismatchError.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
indUsingLet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
indUsingTerm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inferForallTypeLCNF.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inferForallTypeLCNF.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inferTypeFailure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
infixprio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
info_trees.lean perf: add high priority to OfSemiring.Q instances (#12782) 2026-03-04 12:58:15 +00:00
infoFromFailure.lean feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
initializeNonemptyErrorMsg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inj1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inj2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
injectionBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
injections1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
injectionsIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
injective.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
injHEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
injIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
injSimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inline_fn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineExpr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineIfReduceLCNF.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineIfReduceLCNF.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineLCNFIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineLCNFIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineLoop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineProjInstIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inliner_loop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineWithNestedRecIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inlineWithNestedRecIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
inst.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instanceIssues.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instanceReducibility.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instanceReducible.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
instances.lean perf: separate meta and non-meta initializers (#12016) 2026-02-26 08:05:19 +00:00
instances.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instanceUsingFalse.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
instanceWhere.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instanceWhereDecls.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instantiateMVarsCrossScope.lean test: add instantiateMVars tests and benchmark for delayed assignments (#12808) 2026-03-06 10:59:13 +00:00
instantiateMVarsShadow.lean test: add instantiateMVars tests and benchmark for delayed assignments (#12808) 2026-03-06 10:59:13 +00:00
instantiateMVarsSharing.lean test: add instantiateMVars tests and benchmark for delayed assignments (#12808) 2026-03-06 10:59:13 +00:00
instantiateRevBetaS.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instEtaIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instPatVar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instprio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
instuniv.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
instuniv.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
int_complement_shiftRight.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
int_div_mod.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
int_to_nat_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
int_toBitVec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
internalizeCasesIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
interp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
interp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
interp2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
interp2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
intModBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
intModBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
intNegSucc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
intNegSucc.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
intro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
introLetBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
introLetBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
introLetFun.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
intromacro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
invalid_dotted_identifier_prop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
invalid_field_notation_function.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
invalid_field_notation_function.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
invalid_field_notation_mvar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
invalid_field_notation_unusable_param.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
invalidProjection.lean chore: use terminology "non-recursive structure" instead of "struct-like" (#12749) 2026-03-09 03:44:38 +00:00
invalidTupleProjHints.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
IO_test.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
IO_test.lean.after.sh chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ioNulBytes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ioRandomBytes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ioRandomBytes.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
IRbug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
IRbug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
irCompilerBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
irreducibleIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqCheckAssignmentBug.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
isDefEqCheckAssignmentBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqConstApproxIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqMVarSelfIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqMVarSelfIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqPerfIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqPerfIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqProjIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqProjPerfIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isDefEqProjPerfIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isInstanceCongrRegression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isNoncomputable.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
isNoncomputable.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2021.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2021.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2102.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2108.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2113.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2171.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2237.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2628.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2628.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2883.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2925.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2962.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2975.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2975.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2981.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2981.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue2982.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue3175.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue3204.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue3212.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue3212.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue3770.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue3848.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4063.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4146.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4394.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4540.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4650.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4671.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4684.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue4726.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5027.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5061.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5347.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5384.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5562.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5602.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5630.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5630.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5661.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5661.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5699.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5726.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5767.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5767.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5828.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5836.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue5903.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue6015.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue6281.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue6281.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue6531.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue6550.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue6592.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue6786.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7318.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7322.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7332.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7383.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7383.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7408.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7550.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7826.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7826.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue7826a.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8093.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8098.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8103.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8107.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8195.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8213.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8257.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8274.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8293.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8360.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8490.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8939.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8939wf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8939wf.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8962.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue8969.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue9018.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue9462.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue9646.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue9844.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue9846.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10132.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10195.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10299.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10329.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10353.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10416.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10424.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10431.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10573.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10651.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10678.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10683.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10705.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10710.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10721.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10723.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10749.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10775.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10781.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10792.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10794.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10821.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10895.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue10976.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11181.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11183.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11186.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11211.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11221.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11342.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11449.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11450.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11560.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11610.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11655.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11665.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue11695.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12240.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12268.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12398.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12404.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12495.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12495.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12543.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12630.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
issue12630.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ite_dsimproc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
iterators.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
james1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
james1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jason1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jpCasesDiscrM.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jpCasesDiscrM.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jpCasesNary.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jpCasesNary.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jpClosureIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jpClosureIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jpVoidArgs.lean perf: remove void JP arguments (#12790) 2026-03-04 15:46:42 +00:00
json.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
json.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
json2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
json_empty.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
jsonSurrogates.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kernel1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kernel2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kernel_maxheartbeats.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kernelBacktrack.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kernelBacktrack.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kernelErrorFollowup.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kernelInterrupt.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kevin.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
keyAttrErase.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
keyAttrErase.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
krivine.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kronRWIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
kronRWIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
KyleAlg.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
KyleAlg.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
KyleAlgAbbrev.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lambdaLiftCache.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lambdaLiftCache.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lazyListRotateUnfoldProof.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lazyListRotateUnfoldProof.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
lazylistThunk.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lazySeq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lazySeq.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lazyUnfoldingPerfIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lazyUnfoldingPerfIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnf2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnf2.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnf3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnf_simp_let.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfBinderNameBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfCache.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfCache.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfCastIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfCheckIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfCheckIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfErasure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfInferProjTypeBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfInferProjTypeBug.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfInferProjTypeIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfInferProjTypeIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfInliningIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfInliningIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfIssue.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfTypes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lcnfTypes.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
LE.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
LE.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lean3_zulip_issues_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lean3RefineBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lean3RefineBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lean_nat_bitwise.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lean_nat_gcd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
left_right.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lemma.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
let_Issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letBRecOnIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letDeclSimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letFun.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letFun.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letFunUnusedVarBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letMVar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letMVar.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letNonDep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letrecInProofs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letrecInThm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letRecTheorem.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letRecTheorem.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letrecWFIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letToHave.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
letToHaveCleanup.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
level.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
levelNamesInTacticMode.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
levelNGen.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
levelNGen.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
levenshtein.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lia_order_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lia_with_cases.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
liaByRefl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_search_all.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_search_grind.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_search_grind.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_deprecated.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_import.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_local.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_mepo.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_mepo.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_override.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_persistent.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_persistent_module.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_private.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
library_suggestions_sine_qua_non.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
librarySearch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
librarySearch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
libuv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lift_lets.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
liftMethodInMacrosIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
LiftMethodIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linearByRefl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linearCategory_perf_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linearCategory_perf_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linearDecEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linearNoConfusion.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linterCoe.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linterMissingDocs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linterMissingDocs.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linterSuspiciousUnexpanderPatterns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
linterSuspiciousUnexpanderPatterns.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
list_monadic_functions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
list_monadic_functions.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
list_simp.lean chore: prefer cons_cons over cons₂ in names (#12710) 2026-02-27 08:58:08 +00:00
list_variables_linter.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
listDecEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
listLength.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
listLength.lean.out.expected feat: make the borrow inference explain itself (#12810) 2026-03-05 14:18:13 +00:00
listtostring.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
listtostring.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lit_values.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lit_values.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
litToCtor.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
localGlobalNotation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
localNameResolutionWithProj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
localNotationPP.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
localNotationPP.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
localParsers.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lossy_casts.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lrat_roundtrip.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
lvl1.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
lvl1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macro2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macro3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macro_macro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macro_macro.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroElabRulesIssue1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroElabRulesIssue1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroid.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroid.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroParams.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroResolveName.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroResolveName.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroscopes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroscopes.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroTrace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
macroTrace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
magical.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
mainIncorrectType1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainIncorrectType2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainIncorrectType3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainIncorrectType4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainIncorrectType5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainType1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainType2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainType3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainType4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainType5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mainType6.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mangling.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
manyAritySyntax.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mapTR.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match2.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match4.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_ctorIdx.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_eqns_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_expr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_expr_expected_type_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_expr_meta_modifier.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_expr_perf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_int_lit_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_lit_fin_cover.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_lit_issues.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_lit_issues.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_lit_regression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_lit_regression.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_nat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
match_unit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchApp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchArrayLit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchCongrEqns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchDiscrType.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchEqnsHEqIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchEqnsHEqIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchEqs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchEqs.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchEqsBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchEqsBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matcherElimUniv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchGenBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchGenBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchGenIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchMissingCase.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchMultAlt.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchMultAlt.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchNoPostponing.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchOfNatIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchOfNatIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchPatternInsideBinders.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchPatternInsideBinders.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchPatternPartialApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchPatternPartialApp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchPatternVarErrors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchRw.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchSparse.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchSparse2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchtac.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchtac.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchUnifyBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchunit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchunit.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchVarIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matchWithSearch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mathlibetaissue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mathlibetaissue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mathport18.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mathport18.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mathport_issue16.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mathport_issue16.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
matrix.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
maxSuggestionsTest.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
may_postpone_tc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
maze.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mergeSort.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mergeSortCPDT.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
messageKind.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
meta.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
meta1.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
meta2.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
meta2.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
meta3.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
meta4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
meta5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
meta6.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
meta6.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
meta7.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
meta7.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
methodSpecs.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
methodSpecsDeriving.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
methodsRetInhabited.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mightBeDerivable.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Miller1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mintroErrorMessage.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
missingDeclName.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
missingDocsTacticAlt.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
missingExplicitWithForwardNamedDep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
missingSizeOfArrayGetThm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mixedMacroRules.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mixedMacroRules.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mixfix.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mjissue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
modAsClasses.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
moduleDoc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
moduleDoc.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
moduleHeaderLeadingWhitespace.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
monadCache.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
monadCache.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
monadControl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
MonadControl_tutorial.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
monotone.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
more_jps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mspecInvariantInstantiation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mspecInvariantInstantiation.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mspecNoAssignSyntheticOpaque.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mul_match_pattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mulcomm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
multiTargetCasesInductionIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mut_ind_wf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutual_coinduction.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutual_termination_by_errors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutualDefThms.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutualWithCompositeNames.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutualWithMacro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutualWithNamespaceMacro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutwf1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutwf2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutwf2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutwf3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutwf3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutwf4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mutwf4.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvar_fvar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvar_fvar.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenInvariantAttr.lean feat: add @[mvcgen_invariant_type] attribute for extensible invariant classification (#12874) 2026-03-11 08:04:22 +00:00
mvcgenInvariantsSuggestions.lean feat: add withEarlyReturnNewDo variants for new do elaborator (#12881) 2026-03-11 10:44:34 +00:00
mvcgenInvariantsWith.lean feat: add withEarlyReturnNewDo variants for new do elaborator (#12881) 2026-03-11 10:44:34 +00:00
mvcgenJPs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenLocalSpec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenPRangeInst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenRflReducibility.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
mvcgenSimpClassMethod.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenSplitState.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenTutorial.lean feat: add withEarlyReturnNewDo variants for new do elaborator (#12881) 2026-03-11 10:44:34 +00:00
mvcgenUnkownIdent.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenWithFail.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
mvcgenWitnessType.lean feat: add @[mvcgen_witness_type] attribute for extensible witness classification (#12882) 2026-03-11 11:38:05 +00:00
name_eq_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
namelit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
namelit.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
namePatEqThm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nameRepr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nameRepr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
namespaceHyg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
namespaceIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
namespaceResolution.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nary_nomatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nat_mod_defeq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nativeReflBackdoor.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
natlit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
negFloat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
negFloat.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nested_inductive.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nested_match_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedDo.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedInductiveConstructions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedInductiveIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedInductiveRecType.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedInductiveUniverse.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedIssueMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedIssueMatch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedrec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedtc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedtc.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedTypeFormers.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedWF.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nestedWF.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
net_addr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
networkInterfaces.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
never_extract.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
new_compiler.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
new_frontend2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
new_frontend2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
new_inductive.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
new_inductive.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
new_inductive2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
new_inductive2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newdo.lean chore: tighten a do match elaborator test case to prevent global defaulting (#12675) 2026-02-27 01:17:27 +00:00
newdo.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newfrontend1.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
newfrontend1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newfrontend2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newfrontend2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newfrontend3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newfrontend3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newfrontend5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
newfrontend5.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nicerNestedDos.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
no_grind_constProp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
no_grind_constProp.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
no_simproc_usize.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
no_simproc_usize.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noConfusionCtorInjection.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noConfusionCtors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noErrorUtil.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nofun1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noindexAnnotation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nomatch_regression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nomatch_tac.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noncomp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noncompSection.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noncompSection.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noncomputable_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noncomputable_decide.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
noncomputableUnused.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nondepArrow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nondepArrow.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
nonrec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
norm_cast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
notationDelab.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
notationDelab.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
numChars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
obtain.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
offsetIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ofNat_class.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ofNatNormNum.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ofNatNormNum.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
omega.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
omega_examples.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
omegaCanon.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
omegaDischarger.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
omegaDischarger.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
opaqueCodeGen.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
openInScopeBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
openTermTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
optionDecEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
optionGetD.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
optionGetD.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
optParam.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
or_shortcircuit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
or_shortcircuit.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Ord.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
order.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
order.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
overAndPartialAppsAtWF.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
overAndPartialAppsAtWF.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
overlappingTokens.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
overloaded.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
overloaded.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
overloadsAndDelayedCoercions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
pairsSumToZero.lean feat: add withEarlyReturnNewDo variants for new do elaborator (#12881) 2026-03-11 10:44:34 +00:00
pairsSumToZero.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
panicAtCheckAssignment.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
parray1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PArray_forM.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PArray_forM.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
parseEnd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
parsePrelude.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
parsePrelude.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
parserAliasShadow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
parserQuot.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
parserQuot.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_aeneas.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_aeneas2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_aeneas2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_explicit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_f91.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_induct.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_monadic.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
partial_fixpoint_monotonicity.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_mutual.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_probability.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_prop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partial_fixpoint_split.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partialApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
partialDelta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
patbug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
patternInvalidNamedArg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
pendingInstBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
pendingMVarIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
phashmap_iter.lean feat: persistent hash map iterator (#12852) 2026-03-10 08:01:32 +00:00
postponeBinRelIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
posView.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
pow_exploit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppBeta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppBeta.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppDeepTerms.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppDeepTerms.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppExpr.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
ppExpr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppFVarsAnonymous.lean chore: migrate more tests to new test suite (#12809) 2026-03-06 16:52:01 +00:00
PPInstances.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PPInstances.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppite.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppite.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppLet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
pplevel.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
pplevel.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppMaxSteps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppMData.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppMotives.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppMotives.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppMVars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppNotationCode.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppNotationCode.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppNumericTypes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppOneline.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppParens.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppPiBinderNames.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PProd_syntax.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PPRoundtrip.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PPRoundtrip.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppSpaces.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppSyntax.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppSyntax.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PPTopDownAnalyze.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
PPTopDownAnalyze.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppUnicode.lean feat: use unicode(...) in Init/Notation and elsewhere (#10384) 2026-03-09 22:17:32 +00:00
ppUsingAnonymousConstructor.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ppVector.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
precDSL.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
precDSL.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
prefixTableStep.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
prelude-injectivity.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
primProjEtaIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
primProjEtaIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
print_cmd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
print_cmd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
printDecls.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
printDecls.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
printEqns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
printStructure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
prioDSL.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
privateCtor.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
privateFieldCopyIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
privateFieldCopyIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
privateInPublic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Process.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Process.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
processGenDiseqBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
proj_delta_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
projDefEq2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
projWithIrrelevantFields.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
projWithNestedIrrelevantFields.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
promise.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
proofAsSorry.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
proofDataConfusionBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
proofIrrelFVar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
propagateExpectedType.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
prv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
prv.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
prvNameWithMacroScopes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
psumAtWF.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ptrAddr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ptrAddr.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
qed_macro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
qualifiedNamesRec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
quasi_pattern_unification_approx_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
quotInd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
quotInd.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
range.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rangePolymorphic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Rat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rat1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rat1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rational.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rational.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rawStrings.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rc_tests.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rcases.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rcases1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
readDir.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
readDir.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
readerThe.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
realPath.lean chore: fix ci for new test suite (#12704) 2026-02-27 23:25:37 +00:00
realPath.lean.out.ignored chore: fix ci for new test suite (#12704) 2026-02-27 23:25:37 +00:00
recCommonPrefixAlpha.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
recconstructorcrash.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
recInfo1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
recommendedSpelling.lean feat: use unicode(...) in Init/Notation and elsewhere (#10384) 2026-03-09 22:17:32 +00:00
reduce1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduce2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduce3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduce3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduceArity.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduceArity.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduceBEqSimproc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduceBool.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduceBool.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reduceCtorIdxSimproc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reducibilityAttrValidation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reducibleClassField_perf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reductionBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ref1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ref1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
refl.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reflectiveIndPred.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reflectiveIndPred.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Reformat.lean feat: leading whitespace on first token (#12662) 2026-03-06 12:46:44 +00:00
Reformat.lean.input chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Reformat.lean.out.expected feat: leading whitespace on first token (#12662) 2026-03-06 12:46:44 +00:00
regressions3210.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Reid1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Reid1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
renameI.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
renameI.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
renameI2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
renameI2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
renameSelf.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
renaming.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Reparen.lean feat: leading whitespace on first token (#12662) 2026-03-06 12:46:44 +00:00
Reparen.lean.out.expected fix: address unused simp theorem warnings (#12829) 2026-03-06 23:12:03 +00:00
repeat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
repeatConv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
replace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
replace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
replace_tac.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
replayConst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
repr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
repr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
repr_empty.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
repr_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
repr_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reprove.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reserved.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
reservedNameResolution.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
resolveGlobalName.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
resolveGlobalName.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
resolveLVal.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
returnOptIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
revert1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
revertlet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
revertlet.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
revertMetavarKind.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rewrite.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rewrites.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rfl_simp_thm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rfl_simp_thm.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rflApplyFoApprox.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rflApplyFoApprox.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rflProofsCongrCastsIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rflReducibility.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rflTacticErrors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
robinson.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
robinson.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
root.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
root.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rossel1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rossel1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
run_cmd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
run_meta1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
run_test chore: migrate pkg tests (#12889) 2026-03-11 18:55:46 +00:00
runSTBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
runSTBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rw_inst_implicit_args.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rw_inst_mvars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rwEqThms.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rwEqThms.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rwPrioritizesLCtxOverEnv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rwRegression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
rwWithElabError.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
safeExp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
safeShadowing.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sanitizeMacroScopes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sanitizeMacroScopes.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
sarray.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sarray.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopeCacheProofs.lean perf: fuse fvar substitution into instantiateMVars (#12233) 2026-03-09 17:05:21 +00:00
scopedCommandAfterOpen.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedCommandAfterOpen.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedHindingIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedHindingIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedLocalReducibility.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedParsers.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedParsers.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedParsers2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedParsers2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedunifhint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
scopedunifhint.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sealCommand.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
secVarBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
secVarBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sepByIndentQuot.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sepByIndentQuot.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
seqToCodeIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
seqToCodeIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
set.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
set_lit_unexpand.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
setOptionErrors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
setOptionTermTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
setOptionTermTactic.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
setStructInstNotation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
seval1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sharecommon.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sharecommon_mpz.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
show_term.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
showTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
showTests.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
shrinkFn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sigmaprec.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sign.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp-elab-recover.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp1.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp6.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_all.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_all_contextual.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_all_duplicateHyps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_all_duplicateHyps.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_arith_deprecated.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_arith_issues.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_arith_issues.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_cache_perf_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_cache_perf_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_cases.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_dsimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_dsimp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_eqn_bug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_failIfUnchanged.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_inst_implict_args.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_int_arith.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_locals.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_locals_module.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_nat_arith.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_proj_transparency_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_proj_transparency_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_reducibleClassField.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_suggestions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_trace_backtrack.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simp_trace_backtrack.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpArith1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpArith1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpArithCacheIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpArrayIdx.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpAtDefIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpAutoUnfold.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpBool.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpCacheTest.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpCasesOnCtorBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpCasesOnCtorBug.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpcfg.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpcfg.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpCnstr1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpCondLemma.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpConfigPropagationIssue1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpConfigPropagationIssue3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDecide.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDefToUnfold.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDiag.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDiag.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDisch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDisch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDischargeLoop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpDischargeLoop.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
simpExtraArgsBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpExtraArgsBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpGround1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpGround1.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
simpHave.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpHigherOrder.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpIfPre.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpImpLocal.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpIndexDiag.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpIndexDiag.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpInv.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpJpCasesDepBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simple_ground_extraction.lean feat: extract simple array literals as static initializers (#12724) 2026-02-27 18:42:21 +00:00
simple_reuse.lean feat: make the borrow inference explain itself (#12810) 2026-03-05 14:18:13 +00:00
simpLetFunIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpLoopBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpLoopProtection.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpMatchDiscr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpMatchDiscr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpMatchDiscrIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpMatchEta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpOnly.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPartialApp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPartialApp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPrefixIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPrefixIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPreIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPreprocess.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPreprocess.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpPrio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc_builtin_erase.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc_disable_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc_disable_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc_erase.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc_panic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simproc_timeout.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
simproc_timeout.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
simprocChar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocChar.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocEval4.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocFin.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocNat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocSInt.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocString.lean feat: simproc for String.singleton (#12706) 2026-02-26 14:41:56 +00:00
simprocTrace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocTrace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simprocUInt.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpRwBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpSInt.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpStar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpStarHyp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpTrace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpTracePostIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpTracePostIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpUnfoldAbbrev.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpUnusedArgs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpZetaFalse.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
simpZetaFalse.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sint-abs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sint_basic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sint_basic.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sint_conversions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sint_div_overflow.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sint_div_overflow.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof4.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof5.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof6.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sizeof6.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
skipAssignedInstances.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
skipKernelTC.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
slice.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
smartUnfolding.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
smartUnfolding.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
smartUnfoldingBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
smartUnfoldingMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
smartUnfoldingMatch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
snapshotTree.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
snapshotTree.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
solve_by_elim.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
solve_by_elim_suggestions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
som1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sorry.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sorryWarning.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sorryWarning.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sparseCasesOn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
spec_issue.lean feat: non exponential codegen for reset-reuse (#12665) 2026-02-26 09:35:45 +00:00
spec_issue.lean.out.expected feat: non exponential codegen for reset-reuse (#12665) 2026-02-26 09:35:45 +00:00
spec_limit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
specbug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
specFixedHOParamModuloErased.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
specialize1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
specialize2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
specialize3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
specialize_cache_miscompile.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
split1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
split2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
split3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
split_mvars_target.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitAtCode.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitErrors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitIfIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitIfIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitIssue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitIssue2.lean.out.expected fix: make option linter.unusedSimpArgs respect linter.all (#12560) 2026-03-09 15:12:02 +00:00
splitIssue3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitIssue3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitList.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitList.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
splitOrderIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
spredNotation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
spredProofMode.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
st_test.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
starsAndBars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
state8.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
state12.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stateRef.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stdDoPostUnit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stdio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stdio.lean.after.sh chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stdio.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stream.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stream.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
streamEqIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
streamEqIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
strictImplicit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
strictImplicit.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_gaps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_imp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_imp.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_imp2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_imp2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_kmp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_neq_kernel_cost.lean perf: optimize string literal equality simprocs for kernel efficiency (#12887) 2026-03-14 10:30:31 +00:00
string_pos_grind.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_replace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_simprocs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_slice.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_termination.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
string_toNat_underscores.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
strInterpolation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
strInterpolation.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
strLitProj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
strLitProj.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
struct1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
struct1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
struct2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
struct2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
struct3.lean feat: mutually dependent structure default values, and avoiding self-dependence (#12841) 2026-03-09 04:15:06 +00:00
struct_inst_typed.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
struct_instance_in_eqn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structBinderIdent.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structBinderUpdates.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structEqns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInst2.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
structInst3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInst4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInstExtraEta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInstFast.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInstSourcesLeftToRight.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInstSourcesLeftToRight.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structInstUpdates.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structNamedParentProj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structNoBody.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structPrivateFieldBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structPrivateFieldBug2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqn6.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns3.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralEqns5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralIssue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralMutual.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralOverNested.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralRec1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structuralRec2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structure.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
structure_recursive.lean chore: use terminology "non-recursive structure" instead of "struct-like" (#12749) 2026-03-09 03:44:38 +00:00
structureElab.lean feat: mutually dependent structure default values, and avoiding self-dependence (#12841) 2026-03-09 04:15:06 +00:00
structWithAlgTCSynth.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
structWithAlgTCSynth.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
stuckMVarBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stuckMVarBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stuckTC.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stxKindInsideNamespace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stxKindInsideNamespace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stxMacro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
stxMacro.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subarray_split.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subexpr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subscript_parser.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subset.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subset.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subsingletonCasesOn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subst1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subst1.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
substlet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
substVars.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
substWithoutExpectedType.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
subtype_inj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
suffices.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_cbv_12336.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_congrInfo.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_discrtree_eta.lean fix: eta-reduce expressions in sym discrimination tree lookup (#12920) 2026-03-14 16:57:10 +00:00
sym_getMaxFVar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_instantiate.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_intro.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_intro_have.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_liftLower.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_pattern.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_pattern_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_pattern_3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_pattern_level.lean fix: handle universe level commutativity in sym pattern matching (#12923) 2026-03-15 01:06:16 +00:00
sym_simp_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_simp_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_simp_3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_simp_4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sym_simp_5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
symbolFrequency.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
symbolFrequency_foldRelevantConsts.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
symm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sync_barrier.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sync_channel.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sync_mutex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sync_notify.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sync_recursive_mutex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
sync_shared_mutex.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntax1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntax1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntaxAbbrevQuot.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntaxAbbrevQuot.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntaxInNamespacesAndPP.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntaxInNamespacesAndPP.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntaxPrio.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
syntaxPrio.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
synth1.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
synth1.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
syntheticOpaqueReadOnly.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
syntheticOpaqueReadOnly.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
synthInstsIssue.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
synthInstsIssue.lean.out.expected feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
synthOrderRegression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
synthOrderRegression.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
synthPending1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
synthPendingBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tabulate.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tabulate.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tactic1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tactic1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tactic_config.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tacticDoc.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tacticDocAllModule.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tacticDocAllNonmod.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tacticDocUserName.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tacticExtOverlap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tacticTests.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tagged_return_1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tagged_return_2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
takeSimpEqns.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
task_iterators.lean perf: separate meta and non-meta initializers (#12016) 2026-02-26 08:05:19 +00:00
task_test.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
task_test.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
task_test2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
task_test2.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
task_test_io.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
task_test_io.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
taskState.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tc_cache.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tc_eta_struct_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tc_eta_struct_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tcUnivIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tempfile.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
termElab.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
terminalAsSorry.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
terminalAsSorry.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
termination_by_where.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
terminationByStructurally.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
termParserAttr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
TermSeq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
test_binary_dec_proc_fold.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
test_proj_hints.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
test_simp_reducible_class.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
thmIsProp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
thunk.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
thunk.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
thunkTaskCasesOn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
time.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeAPI.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeCanonFormats.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeClassOperations.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeFormats.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeIO.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeLimits.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeLocalDateTime.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeNegative.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeOperations.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeOperationsOffset.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeParse.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeSet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
timeTzifParse.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
to_array_csimp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toArrayEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toDeclEtaBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toExpr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toExpr.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toExpr2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toExpr2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toFieldNameIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toFieldNameIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toFromJson.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tojson_fromjson_perf_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toLCNFCacheBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
toLCNFCacheBug.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
trace.lean feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
trace_synth.lean feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
traceClassScopes.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
traceClassScopes.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
traceElabIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
traceFormat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
traceStateBacktracking.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
traceStateBacktracking.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
traceTacticSteps.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
traceTacticSteps.lean.out.expected feat: add structured TraceResult to TraceData (#12698) 2026-03-10 02:42:57 +00:00
trackZetaDeltaCacheIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
trans.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
trans.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
treeMap.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
treeMap2.lean chore: ensure test names differ by more than just case (#12729) 2026-02-27 19:03:22 +00:00
treeNode.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
trivial_uint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_first_par.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_heartbeats.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_induction.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_library_suggestions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_panic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_parallelism.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_register_builtin.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_solve_by_elim.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_solve_by_elim.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
try_user_suggestions.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tryHeuristicPerfIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tryHeuristicPerfIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tryHeuristicPerfIssue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tryHeuristicPerfIssue2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
tryPostponeIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
type_as_hole.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
type_class_performance1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
type_class_performance1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeAscImp.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_append.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_append.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_coerce.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_coerce.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_diamond.lean feat: move instance-class check to declaration site (#12325) 2026-03-06 03:23:27 +00:00
typeclass_easy.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_easy.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_loop.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_metas_internal_goals1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_metas_internal_goals2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_metas_internal_goals3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_metas_internal_goals4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeclass_outparam.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
typeOccursCheckIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ubscalar.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ubscalar.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
ugetBorrowed.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
uintCtors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
uintCtors.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
uintMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
uintMatch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unboxStruct.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unboxStruct.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unexpander.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unexpander.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unexpandersNamespaces.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unexpandersNamespaces.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
UnexpandSubtype.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
UnexpandSubtype.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unexpected_result_with_bind.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfold1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfold1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfold_reducible_class_proj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldDefEq.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldDefEq.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldLemma.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldMany.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldPartialRegression.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldr.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldReduceMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldReduceMatch.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unfoldTactic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unhygienic.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unhygienic.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unhygienicCode.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unhygienicCode.lean.out.expected chore: cleanup after closed term extraction by removing dead values (#12717) 2026-02-26 22:33:08 +00:00
unif_issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unif_issue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unif_issue2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unif_issue2.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unifhint1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unifhint2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unifhint3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unifHintAndTC.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unifHintAndTC.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unihint.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unihint.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
univ_out_params.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
univCnstrApprox.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
univCnstrApprox.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
univIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
univParamIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
univPolyEnum.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unnecessaryUnfolding.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unnecessaryUnfolding.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unsafeConst.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unsafeConst.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unsafeInit.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unsafeTerm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unusedLet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unusedLet.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unusedVarDoMatch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unusedVarDoMWE.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
unusedWarningAtStructUpdate.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
update.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
updateExprIssue.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
updateExprIssue.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
updateLevelIssues.lean chore: deprecate levelZero and levelOne (#12720) 2026-03-04 01:03:08 +00:00
updateLevelIssues.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Uri.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
Uri.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
usesOfNoncomputable.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
utf8英語.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
valueOfTerm.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
varBinderUpdate.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
variable.lean fix: make the omit, unusedSectionVars and loopingSimpArgs linter respect linter.all (#12563) 2026-03-09 11:58:02 +00:00
versoDocClass.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocFirstLineHeader.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocIndentedHeader.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocMarkdown.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocMetadata.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocModuleDeclOnly.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocModuleFallback.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocModuleVersoOnly.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocNesting.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocParseError.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocs.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocs.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocSuggestionNoImport.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocsWhere.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
versoDocWarningsErrors.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
warnSorry.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wf_preprocess.lean chore: turn on new do elaborator in Core (#12656) 2026-03-09 12:38:33 +00:00
wf_preprocess_leak.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfcomputable.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfEqns1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfEqns1.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfEqns2.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfEqns3.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfEqns4.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfEqns5.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfEqnsIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfForIn.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfirred.lean fix: preserve @[implicit_reducible] for WF-recursive definitions (#12776) 2026-03-03 18:57:55 +00:00
wfLean3Issue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfOmega.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfOverapplicationIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfrec-nat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfrecUnary.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfrecUnusedLet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfrecUnusedLet.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
WFRelSearch.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfSum.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfUnfold.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
wfWithSidecondition.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
where1.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
whereCmd.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
whereFinally.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
whileRepeat.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
whnfDelayedMVarIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
whnfProj.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
whnfProj.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
WindowsNewlines.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
with_unfolding_none.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withAssignableSyntheticOpaqueBug.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withAssignableSyntheticOpaqueBug.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withLocation.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withLocation.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withReducibleAndInstancesCrash.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withReducibleAndInstancesCrash.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withWeakNamespace.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
withWeakNamespace.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
workspaceSymbols.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
workspaceSymbols.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zeroExitPoints.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zeroExitPoints.lean.out.ignored chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaDelta.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaDeltaFalseDefEqIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaDeltaIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaDeltaSet.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaDeltaSet.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaDeltaTryThisIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaDSimpIssue.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zetaUnused.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zipper.lean chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00
zipper.lean.out.expected chore: switch to new test/bench suite (#12590) 2026-02-25 13:51:53 +00:00