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
a7d62b79
Commit
a7d62b79
authored
Jul 12, 2017
by
Adam Chlipala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
And working with 8.6 again
parent
d74632eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
GeneralRec.v
src/GeneralRec.v
+2
-2
Intro.v
src/Intro.v
+1
-1
No files found.
src/GeneralRec.v
View file @
a7d62b79
...
...
@@ -822,7 +822,7 @@ Lemma cassociativity1 : forall A B C (f : A -> comp B) (g : B -> comp C) r c,
match
goal
with
|
[
H
:
Bnd
_
_
=
Bnd
_
_
|-
_
]
=>
injection
H
;
clear
H
;
intros
;
try
subst
end
.
subst
B
.
try
subst
B
.
(
*
This
line
expected
to
fail
in
Coq
8.4
and
succeed
in
Coq
8.6
.
*
)
crush
.
inversion
H
;
clear
H
;
crush
.
eauto
.
...
...
@@ -836,7 +836,7 @@ Lemma cassociativity2 : forall A B C (f : A -> comp B) (g : B -> comp C) r c,
match
goal
with
|
[
H
:
Bnd
_
_
=
Bnd
_
_
|-
_
]
=>
injection
H
;
clear
H
;
intros
;
try
subst
end
.
subst
A
.
try
subst
A
.
(
*
Same
as
above
*
)
crush
.
inversion
H0
;
clear
H0
;
crush
.
eauto
.
...
...
src/Intro.v
View file @
a7d62b79
...
...
@@ -186,7 +186,7 @@ Some readers have asked about the pragmatics of using this tactic library in the
(
**
**
Installation
and
Emacs
Set
-
Up
*
)
(
**
At
the
start
of
the
next
chapter
,
I
assume
that
you
have
installed
Coq
and
Proof
General
.
The
code
in
this
book
is
tested
with
Coq
versions
8.4
pl
5
and
8.5
beta2
.
Though
parts
may
work
with
other
versions
,
it
is
expected
that
the
book
source
will
fail
to
build
with
_
earlier_
versions
.
At
the
start
of
the
next
chapter
,
I
assume
that
you
have
installed
Coq
and
Proof
General
.
The
code
in
this
book
is
tested
with
Coq
versions
8.4
pl
6
,
8.5
pl3
,
and
8.6
.
Though
parts
may
work
with
other
versions
,
it
is
expected
that
the
book
source
will
fail
to
build
with
_
earlier_
versions
.
%
\
index
{
Proof
General
|
(
}%
To
set
up
your
Proof
General
environment
to
process
the
source
to
the
next
chapter
,
a
few
simple
steps
are
required
.
...
...
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