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

    r46 r62  
    1717using namespace std; 
    1818 
    19 typedef Modular<double> Field; 
     19typedef ModularBalanced<double> Field; 
    2020 
    2121int main(int argc, char** argv){ 
     
    3131                exit(-1); 
    3232        } 
    33         Field F(atoi(argv[1])); 
     33        Field F(atof(argv[1])); 
    3434        Field::Element * A; 
    3535        A = read_field(F,argv[2],&n,&n);