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
8 changes: 4 additions & 4 deletions algebra/CornScope.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
Delimit Scope corn_scope with corn.
(* Open Scope corn_scope.*)

Arguments cs_ap _ _%corn_scope _%corn_scope.
Arguments cs_eq _ _%corn_scope _%corn_scope.
Arguments cs_ap _ _%_corn_scope _%_corn_scope.

Check failure on line 5 in algebra/CornScope.v

View workflow job for this annotation

GitHub Actions / build (coqorg/coq:8.18)

Unknown scope delimiting key _corn_scope.
Arguments cs_eq _ _%_corn_scope _%_corn_scope.

(* Infix "#" := cs_ap (at level 70, no associativity) : corn_scope. *)
Infix "==" := cs_eq (at level 70, no associativity) : corn_scope.

Require Import CoRN.algebra.CSemiGroups.
Arguments csg_op _ _%corn_scope _%corn_scope : extra scopes.
Arguments csg_op _ _%_corn_scope _%_corn_scope : extra scopes.
Infix "+" := csg_op (at level 50, left associativity) : corn_scope.


Expand All @@ -22,7 +22,7 @@
Infix "-" := cg_minus (at level 50, left associativity) : corn_scope.

Require Import CoRN.algebra.CRings.
Arguments cr_mult _ _%corn_scope _%corn_scope : extra scopes.
Arguments cr_mult _ _%_corn_scope _%_corn_scope : extra scopes.
Infix "*" := cr_mult (at level 40, left associativity) : corn_scope.
Notation "x ^ n" := (nexp_op _ n x) : corn_scope.
Notation "1" := [1] : corn_scope.
2 changes: 1 addition & 1 deletion ode/BanachFixpoint.v
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Context (f : X -> X) `{!IsContraction f q} (x0 : X).

Let x n := Nat.iter n f x0.

Arguments x n%mc.
Arguments x n%_mc.

Lemma x_Sn : forall n, x (1 + n) = f (x n).
Proof. reflexivity. Qed.
Expand Down
2 changes: 1 addition & 1 deletion reals/fast/CRpower.v
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ Qed.
on the absolute value of x is available. *)
#[global]
Instance CRpower_N: Pow CR N := λ x n, ucFun (CRpower_N_bounded n (CR_b (1#1) x)) x.
Arguments CRpower_N x%type n%N.
Arguments CRpower_N x%_type n%_N.

Lemma CRpower_N_bounded_N_power : forall (n : N) (c:Qpos) (x:CR),
((- (' (proj1_sig c)) <= x /\ x <= 'proj1_sig c) ->
Expand Down
Loading