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 theories/AAC.v
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

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

Local Open Scope signature_scope.

Expand Down Expand Up @@ -260,7 +261,7 @@
contains, among other things, the arity of symbols).
*)

Inductive T: Type :=

Check warning on line 264 in theories/AAC.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

T is nested using nelist. No scheme for nelist is registered as All.

Check warning on line 264 in theories/AAC.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

T is nested using prod. No scheme for prod is registered as All. It

Check warning on line 264 in theories/AAC.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

T is nested using prod. No scheme for prod is registered as All. It

Check warning on line 264 in theories/AAC.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

T is nested using nelist. No scheme for nelist is registered as All.

Check warning on line 264 in theories/AAC.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

T is nested using prod. No scheme for prod is registered as All. It

Check warning on line 264 in theories/AAC.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

T is nested using nelist. No scheme for nelist is registered as All.

Check warning on line 264 in theories/AAC.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

T is nested using prod. No scheme for prod is registered as All. It
| sum: idx -> mset T -> T
| prd: idx -> nelist T -> T
| sym: forall i, vT (Sym.ar (e_sym i)) -> T
Expand Down
1 change: 1 addition & 0 deletions theories/Utils.v
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

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

(** ** Utilities for positive numbers

Expand All @@ -20,7 +21,7 @@
- multiplicity of terms in sums
*)

Notation idx := positive.

Check warning on line 24 in theories/Utils.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

Use of "Notation" keyword for abbreviations is deprecated, use

Fixpoint eq_idx_bool i j :=
match i,j with
Expand Down Expand Up @@ -65,7 +66,7 @@

(** ** Dependent types utilities *)

Notation cast T H u := (eq_rect _ T u _ H).

Check warning on line 69 in theories/Utils.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

Use of "Notation" keyword for abbreviations is deprecated, use

Section dep.
Variable U: Type.
Expand Down Expand Up @@ -127,7 +128,7 @@
Definition mset A := nelist (A*positive).

(** Lexicographic composition of comparisons (this is a notation to keep it lazy) *)
Notation lex e f := (match e with Eq => f | _ => e end).

Check warning on line 131 in theories/Utils.v

View workflow job for this annotation

GitHub Actions / build (rocq/rocq-prover:dev)

Use of "Notation" keyword for abbreviations is deprecated, use

Section lists.

Expand Down
Loading