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

    r12 r62  
    1818using namespace std; 
    1919 
    20 typedef Modular<double> Field; 
     20typedef ModularBalanced<double> Field; 
    2121 
    2222int main(int argc, char** argv){ 
     
    3232                exit(-1); 
    3333        } 
    34         Field F(atoi(argv[1])); 
     34        Field F(atof(argv[1])); 
    3535        Field::Element * A; 
    3636        A = read_field(F,argv[2],&m ,&n);