Open mkerjean opened 2 months ago
While trying to solve
e <= M
fore : numFieldtype
andM \is_near (nbhs +oo)
, one gets the error messageno applicable tactic
. A message including the necessity fore
to be real (is this what's happening ?),
I guess so, since nbhs_pinfty_ge
is registered as a Hint
but requires e
to verify \is Num.real
for which e : R : numFieldType
is not sufficient.
or to try with
normr e
, would help a lot, would it be hard to implement?
Do you mean by using as an intermediate step the lemma ler_norm
?
But the latter requires a realDomainType
so numFieldType
is anyway not enough.
(I might be missing the point.)
While trying to solve
e <= M
fore : numFieldtype
andM \is_near (nbhs +oo)
, one gets the error messageno applicable tactic
. A message including the necessity fore
to be real (is this what's happening ?),I guess so, since
nbhs_pinfty_ge
is registered as aHint
but requirese
to verify\is Num.real
for whiche : R : numFieldType
is not sufficient.or to try with
normr e
, would help a lot, would it be hard to implement?Do you mean by using as an intermediate step the lemma
ler_norm
? But the latter requires arealDomainType
sonumFieldType
is anyway not enough. (I might be missing the point.)
I was suggesting that the error message might say "try using normr e
instead of e
" or something like that, but I wasn't sure how nbhs_pinfty_ge
and similar lemmas were used. As this is with an Hint, can the error message be more precise ? How can we do that ?
While trying to solve
e <= M
fore : numFieldtype
andM \is_near (nbhs +oo)
, one gets the error messageno applicable tactic
. A message including the necessity fore
to be real (is this what's happening ?), or to try withnormr e
, would help a lot, would it be hard to implement?