Skip to content

Commit 8b7bbc7

Browse files
author
Gregory Malecha
committed
fixing imports and changing to _CoqProject.
1 parent 4a30036 commit 8b7bbc7

File tree

15 files changed

+34
-28
lines changed

15 files changed

+34
-28
lines changed

theories/Core/CmpDec.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Require Import Tactics.Consider.
2-
Require Import Bool.
3-
Require Import RelationClasses.
1+
Require Import Coq.Bool.Bool.
2+
Require Import Coq.Classes.RelationClasses.
3+
Require Import ExtLib.Tactics.Consider.
44

55
Set Implicit Arguments.
66
Set Strict Implicit.

theories/Core/Type.v

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,19 @@ Section type.
4040
typeOk ->
4141
forall x y : T, equal x y -> proper x.
4242
Proof.
43-
clear. intros. eapply only_proper in H0; intuition.
43+
clear. intros.
44+
match goal with
45+
| H : equal _ _ |- _ => eapply only_proper in H
46+
end; intuition.
4447
Qed.
4548
Global Polymorphic Instance proper_right :
4649
typeOk ->
4750
forall x y : T, equal x y -> proper y.
4851
Proof.
49-
clear. intros. eapply only_proper in H0; intuition.
52+
clear. intros.
53+
match goal with
54+
| H : equal _ _ |- _ => eapply only_proper in H
55+
end; intuition.
5056
Qed.
5157

5258
End type.

theories/Data/Graph/GraphAdjList.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import List.
1+
Require Import ExtLib.Data.List.
22
Require Import ExtLib.Data.Graph.Graph.
33
Require Import ExtLib.Data.Graph.BuildGraph.
44
Require Import ExtLib.Structures.Maps.

theories/Data/Monads/IdentityMonad.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import Monad.
1+
Require Import ExtLib.Structures.Monad.
22

33
Set Implicit Arguments.
44
Set Maximal Implicit Insertion.

theories/Data/PreFun.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import Morphisms.
1+
Require Import Coq.Classes.Morphisms.
22
Require Import Coq.Relations.Relations.
33
Require Import ExtLib.Structures.Proper.
44
Require Import ExtLib.Core.Type.

theories/ExtLib.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Require Export Core.RelDec.
1+
Require Export ExtLib.Core.RelDec.

theories/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ARGS :=-R . ExtLib
1515
coq: Makefile.coq
1616
$(MAKE) -f Makefile.coq
1717

18-
Makefile.coq: Makefile $(VS)
19-
@ coq_makefile $(ARGS) $(VS) -o Makefile.coq
18+
Makefile.coq: Makefile _CoqProject $(VS)
19+
@ coq_makefile -f _CoqProject $(VS) -o Makefile.coq
2020

2121
Makefile.test.coq: Makefile $(TVS)
2222
coq_makefile $(ARGS) $(TVS) -o Makefile.test.coq

theories/Structures/MonadCont.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import Monad.
1+
Require Import ExtLib.Structures.Monad.
22

33
Set Implicit Arguments.
44
Set Maximal Implicit Arguments.

theories/Structures/MonadExc.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import Monad.
1+
Require Import ExtLib.Structures.Monad.
22

33
Set Implicit Arguments.
44
Set Maximal Implicit Arguments.

theories/Structures/MonadFix.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import Monad.
1+
Require Import ExtLib.Structures.Monad.
22

33
Set Implicit Arguments.
44
Set Maximal Implicit Arguments.

0 commit comments

Comments
 (0)