Changes between Version 9 and Version 10 of SolverDesign

Show
Ignore:
Timestamp:
11/12/09 10:34:00 (10 months ago)
Author:
admin (IP: 137.43.155.70)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SolverDesign

    v9 v10  
    2525   --> generic with respect to a "SolveModp" class 
    2626 2a Blas Based would do: 
    27      -/ Precompute  QLUP mod p using FFPACK 
    28      -/ Give dense Q, L, U, P to a BlasSolve class which provide a solve mod p method using FFPACK triangul solve 
    29      -/ pass this solve class to the generic lifting 
     27     - Precompute  QLUP mod p using FFPACK 
     28     - Give dense Q, L, U, P to a BlasSolve class which provide a solve mod p method using FFPACK triangul solve 
     29     - pass this solve class to the generic lifting 
    3030 2b Sparse elim would do: 
    31      -/ Precompute  QLUP mod p using GaussDomain 
    32      -/ Give sparse Q, L, U, P to a SparseSolve class which provide a solve mod p method using GaussDomain triangul solve 
    33      -/ pass this solve class to the generic lifting 
     31     - Precompute  QLUP mod p using GaussDomain 
     32     - Give sparse Q, L, U, P to a SparseSolve class which provide a solve mod p method using GaussDomain triangul solve 
     33     - pass this solve class to the generic lifting 
    3434 2c BB Lanczos would do: 
    35      -/ no precomputation 
    36      -/ Give A to a LanczosSolve class which provide a solve mod p method 
    37      -/ pass this solve class to the generic lifting 
     35     - no precomputation 
     36     - Give A to a LanczosSolve class which provide a solve mod p method 
     37     - pass this solve class to the generic lifting 
    3838 2d BB Wiedemann would do: 
    39      -/ Precompute minpoly 
    40      -/ Give minpoly to a WiedSolve class which provide a solve mod p method 
    41      -/ pass this solve class to the generic lifting 
     39     - Precompute minpoly 
     40     - Give minpoly to a WiedSolve class which provide a solve mod p method 
     41     - pass this solve class to the generic lifting 
    4242etc. 
    4343