Skip to content
Merged
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
1 change: 1 addition & 0 deletions src/Common.v
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Require Export Fiat.Common.Coq__8_4__8_5__Compat.
Global Set Implicit Arguments.
Global Generalizable All Variables.
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

Global Coercion is_true : bool >-> Sortclass.
Coercion bool_of_sumbool {A B} (x : {A} + {B}) : bool := if x then true else false.
Expand Down
1 change: 1 addition & 0 deletions src/Common/BoundedLookup.v
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Require Import Fiat.Common.ilist Fiat.Common.ilist2.

From Stdlib Require Vector.
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

(* Typeclasses for ensuring that a string is included
in a list (i.e. a set of method names). This allows
Expand Down
1 change: 1 addition & 0 deletions src/Common/ReservedNotations.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
(** Depend on the compatibility file, so when we switch versions of Coq, all the relevant notations files get rebuilt. *)
Require Export Fiat.Common.Coq__8_4__8_5__Compat.
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

Reserved Infix "∪" (at level 60, right associativity).
Reserved Infix "∩" (at level 60, right associativity).
Expand Down
1 change: 1 addition & 0 deletions src/Common/Telescope/Core.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Require Export Fiat.Common.Coq__8_4__8_5__Compat.
From Stdlib Require Import Relation_Definitions Morphisms.
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

Module Export Telescope.
Inductive Telescope := bottom | tele (A : Type) (B : A -> Telescope).
Expand Down
1 change: 1 addition & 0 deletions src/Common/Wf.v
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Require Export Fiat.Common.Coq__8_4__8_5__Compat.

Set Implicit Arguments.
Set Asymmetric Patterns.
#[warning="-unknown-option"] Set Asymmetric Patterns No Implicits.

Scheme Induction for Acc Sort Prop.
Scheme Induction for Acc Sort Set.
Expand Down
1 change: 1 addition & 0 deletions src/FiniteSetADTs/WordInterface.v
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Require Import Stdlib.Classes.Morphisms.

Set Implicit Arguments.
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

Module Type BedrockWordT.
Axiom W : Type.
Expand Down
1 change: 1 addition & 0 deletions src/Parsers/StringLike/Core.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

Global Set Keyed Unification. (* Makes [rewrite] faster in 8.5 / 8.6; we put it hear to not have to deal with compatibility issues in other files *)
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

Set Implicit Arguments.
Generalizable All Variables.
Expand Down Expand Up @@ -44,7 +45,7 @@
Arguments StringLikeMin : clear implicits.
Arguments StringLike Char {HSLM}.
Arguments StringIso Char {HSLM}.
Bind Scope string_like_scope with String.

Check warning on line 48 in src/Parsers/StringLike/Core.v

View workflow job for this annotation

GitHub Actions / 9.1 (fiat-core parsers parsers-examples coq-ci)

Declaring a scope implicitly is deprecated; use in advance an

Check warning on line 48 in src/Parsers/StringLike/Core.v

View workflow job for this annotation

GitHub Actions / 9.0 (fiat-core parsers parsers-examples coq-ci)

Declaring a scope implicitly is deprecated; use in advance an
Delimit Scope string_like_scope with string_like.
Infix "=s" := (@beq _ _ _) (at level 70, no associativity) : type_scope.
Infix "=s" := (@bool_eq _ _ _) (at level 70, no associativity) : string_like_scope.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Require Export Stdlib.Program.Program Stdlib.Sorting.Permutation.

Unset Implicit Arguments.
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

(* Enumerating the items of a Bag resulting from inserting
an item [inserted] into a bag [container] is a permutation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Require Export Fiat.Common.Coq__8_4__8_5__Compat.
Global Set Asymmetric Patterns.
#[warning="-unknown-option"] Global Set Asymmetric Patterns No Implicits.

Reserved Notation "t ! r"
(no associativity, at level 2,
Expand Down
Loading