Skip to content

Commit

Permalink
fix detype
Browse files Browse the repository at this point in the history
  • Loading branch information
gares committed Jan 25, 2024
1 parent 75b6197 commit cafe40a
Show file tree
Hide file tree
Showing 5 changed files with 395 additions and 9 deletions.
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [2.0.2] - 22/01/2024

Requires Elpi 1.18.1 and Coq 8.19.

### API
- Fix `coq.elaborate-*` does not erase the type annotation of `Let`s (regression
introduced in 2.0.1). This fix may introduce differences in generated names
- Fix `coq.elaborate-*` are not affected anymore by printing options

## [2.0.1] - 29/12/2023

Requires Elpi 1.18.1 and Coq 8.19.
Expand Down
4 changes: 2 additions & 2 deletions apps/derive/tests/test_projK.v
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ Check eq_refl 0 : projEnvelope1 nat 1 1 (Envelope nat 0 1) = 0.
Check projEnvelope2 : forall A, A -> A -> zeta A -> A.
Check eq_refl 0 : projEnvelope2 nat 1 1 (Envelope nat 1 0) = 0.
Check projRedex1 : forall A, A -> beta A -> A.
Check projWhy1 : forall n : peano, match n with
Check projWhy1 : forall n : peano, match n return Type with
| Zero => peano
| Succ _ => unit
end -> iota -> peano.
Check projWhy2 : forall n : peano, match n with
Check projWhy2 : forall n : peano, match n return Type with
| Zero => peano
| Succ _ => unit
end -> iota -> { i : peano & match i with Zero => peano | Succ _ => unit end }.
Expand Down
Loading

0 comments on commit cafe40a

Please sign in to comment.