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

    r4 r62  
    99#include <iomanip> 
    1010#include <iostream> 
    11 #include "fflas-ffpack/modular-positive.h" 
     11#include "fflas-ffpack/modular-balanced.h" 
    1212#include "timer.h" 
    1313#include "Matio.h" 
     
    1919using namespace std; 
    2020 
    21 typedef Modular<double> Field; 
     21typedef ModularBalanced<double> Field; 
    2222typedef vector<Field::Element> Polynomial; 
    2323