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
d41b51c8
Commit
d41b51c8
authored
Oct 18, 2008
by
Adam Chlipala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Up to Streicher
parent
79f135de
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
275 additions
and
1 deletion
+275
-1
Makefile
Makefile
+1
-1
Equality.v
src/Equality.v
+266
-0
Intro.v
src/Intro.v
+2
-0
Tactics.v
src/Tactics.v
+5
-0
toc.html
src/toc.html
+1
-0
No files found.
Makefile
View file @
d41b51c8
MODULES_NODOC
:=
Tactics MoreSpecif DepList
MODULES_PROSE
:=
Intro
MODULES_CODE
:=
StackMachine InductiveTypes Predicates Coinductive Subset
\
MoreDep DataStruct
MoreDep DataStruct
Equality
MODULES_DOC
:=
$(MODULES_PROSE)
$(MODULES_CODE)
MODULES
:=
$(MODULES_NODOC)
$(MODULES_DOC)
VS
:=
$
(
MODULES:%
=
src/%.v
)
...
...
src/Equality.v
0 → 100644
View file @
d41b51c8
This diff is collapsed.
Click to expand it.
src/Intro.v
View file @
d41b51c8
...
...
@@ -197,6 +197,8 @@ More Dependent Types & \texttt{MoreDep.v} \\
\
hline
Dependent
Data
Structures
&
\
texttt
{
DataStruct
.
v
}
\
\
\
hline
Reasoning
About
Equality
Proofs
&
\
texttt
{
Equality
.
v
}
\
\
\
hline
\
end
{
tabular
}
\
end
{
center
}
%
*
)
src/Tactics.v
View file @
d41b51c8
...
...
@@ -163,3 +163,8 @@ Ltac dep_destruct E :=
|
_
_
?
A
=>
doit
A
|
_
?
A
=>
doit
A
end
.
Ltac
clear_all
:=
repeat
match
goal
with
|
[
H
:
_
|-
_
]
=>
clear
H
end
.
src/toc.html
View file @
d41b51c8
...
...
@@ -12,5 +12,6 @@
<li><a
href=
"Subset.html"
>
Subset Types and Variations
</a>
<li><a
href=
"MoreDep.html"
>
More Dependent Types
</a>
<li><a
href=
"DataStruct.html"
>
Dependent Data Structures
</a>
<li><a
href=
"Equality.html"
>
Reasoning About Equality Proofs
</a>
</body></html>
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