]> www.ginac.de Git - cln.git/blob - TODO
benchmarks: time{catalan,euler,exp1,zeta3}.cc actually compile and work now.
[cln.git] / TODO
1 ABI Issues:
2
3 Remove extra signatures in cl_FF_from_float.cc, cl_DF_from_double.cc,
4 cl_F_readparsed.cc, cl_I_readparsed.cc, and cl_RA_readparsed.cc.
5
6
7 Algorithms:
8
9 Niels Moeller's subquadratic GCD
10
11 - polynomial division and gcd
12 - polynomial documentation
13 7. add combinatorial, linear algebra, factorization, polynomial functions
14    as in SAC-2.
15 7. finite fields, e.g.
16    - gf256_log_2, gf256_antilog_2, gf256_power_of_2, gf256_add, gf256_minus,
17      gf256_subtract, gf256_mul, gf256_inv, gf256_div, gf256_product, gf256_exp,
18      gf256_term, gfmul, gfadd, gfinv, gfexp.
19    more polynomial operations:
20      x(), power, >>, <<, division, scalmult, content, primitivepart,
21      gcd, xgcd, no_of_real_roots, factorization.
22    modular polynomials: powmod etc.
23 7. chinese remainder algorithm, maybe Hensel-lifting as in Magnum.
24 8. factor and primality testing for small integers
25 8. primality test in Z:
26    + polynomials cl_MUP_MI, cl_MUP_I
27      use integer FFT for multiplication in cl_UP_MI and cl_MUP_MI
28    + - Pollard rho
29    + - complex values of j()
30      - Hilbert polynomial for j() 7.6.1
31    + roots of polynomials mod N 1.6.1
32    + - elliptic curves, Jacobi representation
33      - m.P on elliptic curve
34    + Atkin's algorithm
35 10. factoring in Z:
36    - small prime table,
37    - Pollard rho,
38    - multiple polynomial quadratic sieve
39
40 Document the timing class
41