Changeset 62 for tests/test-invert.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/test-invert.C

    r25 r62  
    1919 
    2020 
    21  
    22  
    23 typedef Modular<double> Field; 
     21typedef ModularBalanced<float> Field; 
    2422 
    2523int main(int argc, char** argv){ 
     
    3735                exit(-1); 
    3836        } 
    39         Field F(atoi(argv[1])); 
     37        Field F(atof(argv[1])); 
    4038        F.init(zero,0.0); 
    4139        F.init(one,1.0);