Skip to content

Commit

Permalink
Merge pull request #27 from coq-community/prepare-8.15-release
Browse files Browse the repository at this point in the history
Prepare 8.15 release
  • Loading branch information
palmskog authored Jul 22, 2022
2 parents a15a21f + 0c26082 commit 3cd92b9
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Makefile.coq
Makefile.coq.conf
execute_loops.ml
execute_loops.mli
insert-sort.ml
insert-sort.mli
insert_sort.ml
insert_sort.mli
pplus.ml
pplus.mli
.lia.cache
Expand Down
2 changes: 2 additions & 0 deletions Makefile.coq.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
clean::
$(HIDE)rm -f execute_loops.ml execute_loops.mli insert_sort.ml insert_sort.mli pplus.ml pplus.mli
2 changes: 0 additions & 2 deletions ch14_fundations_of_inductive_types/SRC/chap14.v
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,6 @@ Scheme ntree_ind2 :=
Induction for ntree Sort Prop
with nforest_ind2 :=
Induction for nforest Sort Prop.
Arguments ntree_ind2 A P P0 : rename.
Arguments nforest_ind2 A P P0 : rename.

Inductive occurs (A:Type)(a:A) : ntree A -> Prop :=
| occurs_root : forall l, occurs A a (nnode A a l)
Expand Down
2 changes: 0 additions & 2 deletions ch14_fundations_of_inductive_types/SRC/ltree_to_ntree.v
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ Scheme
ntree_ind2 := Induction for ntree Sort Prop
with
nforest_ind2 := Induction for nforest Sort Prop.
Arguments ntree_ind2 A P P0 : rename.
Arguments nforest_ind2 A P P0 : rename.

Section correct_ltree_ind.
Variables (A : Type) (P : ltree A -> Prop) (Q : list (ltree A) -> Prop).
Expand Down
4 changes: 1 addition & 3 deletions ch1_overview/SRC/chap1.v
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,4 @@ Definition sort :
+ now apply insert_sorted.
Defined.

Extraction "insert-sort" insert sort.


Extraction "insert_sort" insert sort.
2 changes: 0 additions & 2 deletions tutorial_inductive_co_inductive_types/SRC/RecTutorial.v
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,6 @@ End Principle_of_Induction.

Scheme Even_induction := Minimality for even Sort Prop
with Odd_induction := Minimality for odd Sort Prop.
Arguments Even_induction P P0 : rename.
Arguments Odd_induction P P0 : rename.

Theorem even_plus_four : forall n:nat, even n -> even (4+n).
Proof.
Expand Down

0 comments on commit 3cd92b9

Please sign in to comment.