You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes notation _ @ _ --> _ is broken after under eq_cvg or under eq_fun.
Here is my example.
From HB RequireImport structures.
From mathcomp RequireImport all_ssreflect ssralg ssrnum ssrint interval finmap.
From mathcomp RequireImport mathcomp_extra boolp classical_sets functions.
From mathcomp RequireImport cardinality fsbigop.
RequireImport signed reals ereal topology normedtype sequences real_interval.
RequireImport esum measure lebesgue_measure .
SetImplicitArguments.
Unset Strict Implicit.
UnsetPrintingImplicit Defensive.
Import Order.TTheory GRing.Theory Num.Def Num.Theory.
Import numFieldTopology.Exports.
LocalOpenScope classical_set_scope.
LocalOpenScope ring_scope.
Example hoge (R : realType) (f : nat -> R) : f x @[x --> \oo] --> 0.
Proof.
under eq_cvg do idtac.
Restart.
under eq_fun do idtac.
Abort.
At first, the goal is
R : realType
f : nat -> R
============================
f x @[x --> \oo] --> 0
but the notation is broken by under eq_cvg do idtac :
R : realType
f : nat -> R
============================
forall t : set R,
nbhs
[set P | (exists2 i : R, [set e | 0 < e] i & ball_ [eta normr] 0 i `<=` P)]
t -> nbhs (f x @[x --> \oo]) t
there is a similar case for under eq_fun do idtac:
R : realType
f : nat -> R
============================
forall t : set R, nbhs 0 t -> nbhs (f x @[x --> \oo]) t
The text was updated successfully, but these errors were encountered:
Sometimes notation
_ @ _ --> _
is broken afterunder eq_cvg
orunder eq_fun
.Here is my example.
At first, the goal is
but the notation is broken by
under eq_cvg do idtac
:there is a similar case for
under eq_fun do idtac
:The text was updated successfully, but these errors were encountered: