Changeset 62 for tests/testeur_lqup.C

Show
Ignore:
Timestamp:
06/03/08 21:24:57 (7 months ago)
Author:
pernet
Message:

* Change the design of fflas-bounds
* Modular<double> -> ModularBalanced?<double>
* Fix the winograd recursion issue (when some steps are done over the field)
* Fix a bunch of bugs
* Remove the template specialization by the Element (incompatible with the soon coming compressed representations over small fields)
* Create a randiter file, generic wrt the modular field

Location:
tests
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • tests

    • Property svn:ignore set to
      test-invert
      test-det
      dense_generator
      test-frobenius
      Makefile
      test-charpoly
      test-lqup
      test-fgemm
      test-fgemv
      test-ftrsm
      test-rank
  • tests/testeur_lqup.C

    r26 r62  
    2121 
    2222 
    23 typedef Modular<double> Field; 
     23//typedef Modular<double> Field; 
     24typedef ModularBalanced<double> Field; 
     25//typedef Modular<float> Field; 
     26//typedef ModularBalanced<float> Field; 
    2427//typedef Modular<int> Field; 
    25 //typedef Modular<float> Field; 
    2628//typedef GivaroZpz<Std32> Field; 
    2729//typedef GivaroGfq Field; 
     
    265267        for (size_t i=0; i<M; ++i) 
    266268                for (size_t j=0; j<N; ++j) 
    267                         if (!(*(Abis+i*lda+j))) 
    268                                 cerr<<i+1<<" "<<j+1<<" "<<((size_t) *(Abis+i*lda+j) )<<endl; 
     269                        if (*(Abis+i*lda+j)) 
     270                                cerr<<i+1<<" "<<j+1<<" "<<((int) *(Abis+i*lda+j) )<<endl; 
    269271        cerr<<"0 0 0"<<endl<<endl; 
    270272