MeatAxe 2.4
src/c-poly.h
00001 
00002 #ifndef CHECK_FUNCTION_TABLE
00003 
00004 #include "meataxe.h"
00005 
00006 Poly_t *RndPol(int fl, int mindeg, int maxdeg);
00007 
00008 void TestPolAlloc(unsigned flags);
00009 void TestPolAdd(unsigned flags);
00010 void TestPolCompare(unsigned flags);
00011 void TestPolGcd(unsigned flags);
00012 void TestPolMul(unsigned flags);
00013 
00014 #else
00015 
00016   { 601, "Polynomial allocation", TestPolAlloc },
00017   { 602, "Polynomial comparison", TestPolCompare },
00018   { 603, "Polynomial addition", TestPolAdd },
00019   { 604, "Polynomial Multiplication", TestPolMul },
00020   { 605, "Polynomial g.c.d.", TestPolGcd },
00021 
00022 #endif