Changes between Version 11 and Version 12 of Ticket #12142
- Timestamp:
- Jul 13, 2013, 5:50:58 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12142 – Description
v11 v12 35 35 }}} 36 36 37 This ticket implements an interface to PARI's FFELT type for non-prime finite fields. It is not the default yet, but itcan be tested by constructing finite fields as follows, for ''p'' prime and ''n'' >= 2:37 This ticket implements an interface to PARI's FFELT type for non-prime finite fields. It can be tested by constructing finite fields as follows, for ''p'' prime and ''n'' >= 2: 38 38 {{{ 39 39 sage: F.<a> = FiniteField(p^n, impl='pari_ffelt') 40 40 }}} 41 This implementation should probably become the default for finite fields of characteristic > 2 and cardinality > 2^16^, superseding the existing PARI polmod implementation.41 This implementation should probably become the default for non-prime finite fields of characteristic > 2 and cardinality > 2^16^, superseding the existing PARI polmod implementation. This switch is the goal of ticket #14888. 42 42 43 43 Apply: [attachment:trac_12142-FiniteField_pari_ffelt.improved.patch], [attachment:trac_12142-singular_conversion.patch]