Changes between Initial Version and Version 7 of Ticket #18109
- Timestamp:
- 04/13/15 16:54:17 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18109
-
Property
Commit
changed from
to
8d5ca559f1b4a376a84d88a995a3fde6bfb74a6f
-
Property
Authors
changed from
to
Jeroen Demeyer
-
Property
Branch
changed from
to
u/jdemeyer/ticket/18109
-
Property
Summary
changed from
IntegerListLex better not be a parent
toRestructure IntegerListLex code
-
Property
Commit
changed from
-
Ticket #18109 – Description
initial v7 1 There are several useless features in `IntegerListLex` as already mentioned in [http://trac.sagemath.org/ticket/17979#comment:291 ticket #17979:comment 21]: 2 - it should not inherit from `Parent` and it should generate lists and not `ClonableArray` 3 - `global_options` is a useless attribute 4 - the `__clascall__` is here for nothing 1 Split up `IntegerListsLex` in a fast Cython back-end and a (slower) Python front-end. Restructure with multiple implementations (like #17920) in mind. 2 3 Attached branch is very much work in progress (although comments on the ''design'' are welcome).