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
This is something @fingolfin proposed in #263. Currently we can't do this, since for example the method FewGensAbelian explicitly calls KnownNilpotent. If we had something like suggested in #271 then we could tell recog to call KnownNilpotent next and then return. That should resolve most of the situations where currently we call a method directly from inside another method. What do you think @fingolfin?
Of course we could also simply convert all calls of the form m(args) into calls which use CallRecogMethod.
The text was updated successfully, but these errors were encountered:
I think my proposal was to convert m(args) to CallRecogMethod(m, args) (or whatever the right syntax is).
As such, I am not sure what the problem is in FewGensAbelian, nor do I understand how this relates to #271. It feels as if you had something more in mind than what you actually wrote down above?
This is something @fingolfin proposed in #263. Currently we can't do this, since for example the method
FewGensAbelian
explicitly callsKnownNilpotent
. If we had something like suggested in #271 then we could tell recog to callKnownNilpotent
next and then return. That should resolve most of the situations where currently we call a method directly from inside another method. What do you think @fingolfin?Of course we could also simply convert all calls of the form
m(args)
into calls which useCallRecogMethod
.The text was updated successfully, but these errors were encountered: