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
The argument order RecogNode( r, H, projective ) for backwards compability was removed, but the documentation says that it exists.
gap> RecogNode(rec(), Omega(-1, 4, 5), false);
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 1st choice method found for `RecogNode' on 3 arguments at /Users/friedrich/.gap/gapdev/lib/methsel2.g:249 called from
<function "HANDLE_METHOD_NOT_FOUND">( <arguments> )
called from read-eval loop at *stdin*:48
type 'quit;' to quit to outer loop
brk>
The function order(ri) does not exist, you need to access it via ri!.order. Probably would be nice to have this function in the same way as isone(ri) etc.:
gap> order(RecogNode(Omega(-1, 4, 5)));
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 1st choice method found for `order' on 1 arguments at /Users/friedrich/.gap/gapdev/lib/methsel2.g:249 called from
<function "HANDLE_METHOD_NOT_FOUND">( <arguments> )
called from read-eval loop at *stdin*:47
type 'quit;' to quit to outer loop
brk>
The text was updated successfully, but these errors were encountered:
The argument order
RecogNode( r, H, projective )
for backwards compability was removed, but the documentation says that it exists.The function
order(ri)
does not exist, you need to access it viari!.order
. Probably would be nice to have this function in the same way asisone(ri)
etc.:The text was updated successfully, but these errors were encountered: