Ask Your Question

Revision history [back]

Bug report in function sage.groups.generic.bsgs

In file /opt/sagemath-9.3/local/lib/python3.7/site-packages/sage/groups/generic.py, line 468, the arguments of function multiple is missed. That makes the bsgs calculation in customized group raise ValueError. Fixing this bug is simple. Just add the missing arguments is ok, like this: c = op(inverse(b), multiple(a, lb, operation=operation, identity=identity, inverse=inverse, op=op))

Bug report in function sage.groups.generic.bsgs

In file /opt/sagemath-9.3/local/lib/python3.7/site-packages/sage/groups/generic.py, /opt/sagemath-9.3/local/lib/python3.7/site-packages/sage/groups/generic.py, line 468, 468, the arguments of function multiple is missed. That makes the bsgs calculation calculation in customized group raise ValueError. ValueError.

Fixing this bug is simple. Just add the missing arguments is ok, like this: this:

c = op(inverse(b), multiple(a, lb,
 c = op(inverse(b), multiple(a, lb, operation=operation, identity=identity, inverse=inverse, op=op))

operation=operation, identity=identity, inverse=inverse, op=op))

Bug report in function sage.groups.generic.bsgs

In file /opt/sagemath-9.3/local/lib/python3.7/site-packages/sage/groups/generic.pysage/groups/generic.py, line 468, the arguments of function multiple 468, multiple is missed. missing some arguments.

That makes the bsgs calculation bsgs calculation in customized group raise ValueError.

Fixing this bug is simple. Just add Adding the missing arguments is ok, enough to fix this bug, like this:

c = op(inverse(b), multiple(a, lb,
                            operation=operation,
                            identity=identity,
                            inverse=inverse,
                            op=op))