Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
cpdt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
research
cpdt
Commits
b96a9952
Commit
b96a9952
authored
Nov 16, 2009
by
Adam Chlipala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Extensional type annotations
parent
92fbb06e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
Extensional.v
src/Extensional.v
+6
-2
No files found.
src/Extensional.v
View file @
b96a9952
...
...
@@ -527,7 +527,9 @@ Module PatMatch.
:
(
forall
ts
,
member
ts
tss
->
option
(
hlist
typeDenote
ts
))
->
(
forall
ts
,
member
ts
tss
->
hlist
typeDenote
ts
->
typeDenote
t2
)
->
typeDenote
t2
:=
match
tss
with
match
tss
return
(
forall
ts
,
member
ts
tss
->
option
(
hlist
typeDenote
ts
))
->
(
forall
ts
,
member
ts
tss
->
hlist
typeDenote
ts
->
typeDenote
t2
)
->
_
with
|
nil
=>
fun
_
_
=>
default
|
ts
::
tss
'
=>
fun
(
envs
:
forall
ts
'
,
member
ts
'
(
ts
::
tss
'
)
...
...
@@ -799,7 +801,9 @@ Module PatMatch.
:
(
forall
ts
,
member
ts
tss
->
pat
t1
ts
)
->
(
forall
ts
,
member
ts
tss
->
hlist
var
ts
->
Elab
.
exp
var
t2
)
->
choice_tree
var
t1
(
option
(
Elab
.
exp
var
t2
))
:=
match
tss
with
match
tss
return
(
forall
ts
,
member
ts
tss
->
pat
t1
ts
)
->
(
forall
ts
,
member
ts
tss
->
hlist
var
ts
->
Elab
.
exp
var
t2
)
->
_
with
|
nil
=>
fun
_
_
=>
everywhere
(
fun
_
=>
None
)
|
ts
::
tss
'
=>
fun
(
ps
:
forall
ts
'
,
member
ts
'
(
ts
::
tss
'
)
->
pat
t1
ts
'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment