Changeset 63 for tests/test-charpoly.C

Show
Ignore:
Timestamp:
06/05/08 14:53:07 (6 months ago)
Author:
pernet
Message:

Update finite field usage

Location:
tests
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • tests

    • Property svn:ignore
      •  

        old new  
         1testeur_fgemm 
         2testeur_lqup 
        13test-invert 
        24test-det 
  • tests/test-charpoly.C

    r62 r63  
    1010#include <iostream> 
    1111#include "fflas-ffpack/modular-balanced.h" 
     12#include "fflas-ffpack/modular-positive.h" 
     13#include "fflas-ffpack/modular-int.h" 
    1214#include "timer.h" 
    1315#include "Matio.h" 
     
    1921using namespace std; 
    2022 
    21 typedef ModularBalanced<double> Field; 
     23//typedef ModularBalanced<double> Field; 
     24//typedef ModularBalanced<float> Field; 
     25//typedef Modular<double> Field; 
     26//typedef Modular<float> Field; 
     27typedef Modular<int> Field; 
    2228typedef vector<Field::Element> Polynomial; 
    2329