Show
Ignore:
Timestamp:
06/19/07 10:08:48 (2 years ago)
Author:
pernet
Message:

* modular-balanced.h : fix a bug in init (double)

* ffpack_ludivine.inl : fix a big in the computation of Q, with Diag = FflasUnit?

* ffpack.h : debugged Echelon and RedEchelon?

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • include/fflas-ffpack/modular-balanced.h

    r18 r24  
    323323                 
    324324                //tmp = floor (y + 0.5); 
    325                 //tmp = fmod (tmp, modulus); 
    326                 tmp = fmod (y, modulus); 
     325                tmp = fmod (tmp, modulus); 
     326                //tmp = fmod (y, modulus); 
    327327                 
    328328                if ( tmp > half_mod ) return x = tmp - modulus;