Skip to content

Adapt to https://github.com/coq/coq/pull/19530 #269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hoare_example/Imp.v
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@

(* begin hide *)
From Coq Require Import
Arith.PeanoNat
Lists.List
Strings.String
PeanoNat
List
String
Morphisms
Setoid
RelationClasses.
Expand Down
14 changes: 7 additions & 7 deletions theories/Axioms.v
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
(** Other ITree modules should import this to avoid accidentally using more
axioms elsewhere. *)

From Coq Require Import
Logic.Classical_Prop
Logic.ClassicalChoice
Logic.EqdepFacts
Logic.FunctionalExtensionality
From Coq.Logic Require Import
Classical_Prop
ClassicalChoice
EqdepFacts
FunctionalExtensionality
.

(* Must be imported to use [ddestruction] *)
From Coq Require Export
Program.Equality
From Coq.Program Require Export
Equality
.

Set Implicit Arguments.
Expand Down
6 changes: 3 additions & 3 deletions theories/Core/KTreeFacts.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

(* begin hide *)
From Coq Require Import
Classes.Morphisms
Setoids.Setoid
Relations.Relations.
Morphisms
Setoid
Relations.

From Paco Require Import paco.

Expand Down
2 changes: 1 addition & 1 deletion theories/Eq/Eqit.v
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Set Warnings "-deprecated-hint-rewrite-without-locality".

From Coq Require Import
Structures.Orders (* Hint Unfold is_true *)
Orders (* Hint Unfold is_true *)
Program
Setoid
Morphisms
Expand Down
2 changes: 1 addition & 1 deletion theories/Props/Finite.v
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ From ITree Require Import
From ITree.Events Require Import Nondeterminism Exception. (* For counterexamples *)

From Paco Require Import paco.
From Coq Require Import Morphisms Basics Program.Equality.
From Coq Require Import Morphisms Basics Equality.
Import ITree.
Import ITreeNotations.
Import LeafNotations.
Expand Down
2 changes: 1 addition & 1 deletion theories/Props/Leaf.v
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ From ITree Require Import
Props.HasPost.

From Paco Require Import paco.
From Coq Require Import Morphisms Basics Program.Equality.
From Coq Require Import Morphisms Basics Equality.
Import ITree.
Import ITreeNotations.
(* end hide *)
Expand Down
8 changes: 5 additions & 3 deletions tutorial/Asm.v
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@

(* begin hide *)
From Coq Require Import
Strings.String
Program.Basics
ZArith.ZArith
String.
From Coq.Program Require Import
Basics.
From Coq Require Import
ZArith
Morphisms
Setoid
RelationClasses.
Expand Down
6 changes: 3 additions & 3 deletions tutorial/Imp.v
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@

(* begin hide *)
From Coq Require Import
Arith.PeanoNat
Lists.List
Strings.String
PeanoNat
List
String
Morphisms
Setoid
RelationClasses.
Expand Down
2 changes: 1 addition & 1 deletion tutorial/Imp2Asm.v
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ From Coq Require Import
Morphisms
Setoid
Decimal
Numbers.DecimalString
DecimalString
ZArith
RelationClasses.

Expand Down
6 changes: 3 additions & 3 deletions tutorial/Utils_tutorial.v
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
(* begin hide *)
From Coq Require Import
Ascii
Strings.String
String
List
Arith.Arith
Arith
ZArith
Nat
Nat
Psatz.

From ExtLib Require Import
Expand Down