-
-
Notifications
You must be signed in to change notification settings - Fork 674
Description
Let C be a category. C.all_super_categories()
starts with C.super_categories()
and finds all super categories inductively.
Unfortunately, the algorithm of C.all_super_categories()
does not comply with the C3 algorithm, that is used by Python to determine the method resolution order for C.parent_class
and C.element_class
.
The aim of this ticket is to be more consistent. Eventually, for any category C (perhaps with modifications for hom categories), one should have
sage: C.parent_class.mro() == [X.parent_class for X in C.all_super_categories()] + [object]
True
sage: C.element_class.mro() == [X.element_class for X in C.all_super_categories()] + [object]
True
and that test should become part of the test suite.
At #11900, the implementation of all_super_categories()
has been changed, so, work should rely on #11900.
Unfortunately, it seems that the C3 algorithm can not simply be imported from Python, even though Python uses it internally, namely in Objects/typeobject.c
. Looking at the implementation, it requires that one gets a list of types, while we want to use it on a list of objects.
Therefore, we need to implement C3 from scratch. Implementing C3 is easy, but if it shall be fast, one needs to be careful.
In particular, one needs to be able to L.pop(0)
quickly, where L is a list. Unfortunately, L.pop(0)
is slow, even in Cython. I found that, if the lists are not too long, it is best to revert L and do L.pop()
instead, which is optimized in Cython. See the discussion at sage-devel.
What my patch does:
- Provide the C3 algorithm in a new extension module
sage.misc.c3
- Use it to compute
all_super_categories()
- Add a test
_test_category_graph
, asserting thatself.parent_class.mro()
andself.all_super_categories()
are compatible.
Apply:
attachment: trac11943_mro_for_all_super_categories_combined.patch
Depends on #11900
Depends on #7980
Component: categories
Keywords: category graph, method resolution order
Author: Simon King
Reviewer: Nicolas M. Thiéry
Merged: sage-5.1.beta0
Issue created by migration from https://trac.sagemath.org/ticket/11943