3D4fining is documented as taking two variables <d>, <f> but it only takes one variable <f>

Issue #19 new
wilfwilson created an issue

The function 3D4fining is documented as: 3D4fining( d, f ) ... d must equal 7 and f must be a field of order q3. But it actually only takes a single argument (the field f):

gap> G:=3D4fining(7,GF(8));
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 1st choice method found for `3D4fining' on 2 arguments at /home/patrick/Downloads/gap/gap-4.10.0/lib/methsel2.g:250 called from
<function "HANDLE_METHOD_NOT_FOUND">( <arguments> )
called from read-eval loop at *stdin*:10
type 'quit;' to quit to outer loop
brk>
-------------------------------------------
working:
gap> G:=3D4fining(GF(8));
3D_4(8)
------------------------------------------

So I recommend that the documentation be updated 🙂.

This was reported to me by my colleague Patrick Salfeld.

Comments (1)

  1. Log in to comment