MeatAxe  2.4
src/c-perm.h
00001 
00002 #ifndef CHECK_FUNCTION_TABLE
00003 
00004 #include "meataxe.h"
00005 
00006 Perm_t *RndPerm(int degree);
00007 
00008 void TestPermAlloc(unsigned flags);
00009 void TestPermMul(unsigned flags);
00010 void TestPermOrder(unsigned flags);
00011 void TestPermPwr(unsigned flags);
00012 void TestPermInv(unsigned flags);
00013 
00014 #else
00015 
00016   { 501, "Permutation allocation", TestPermAlloc },
00017   { 502, "Permutation order", TestPermOrder },
00018   { 503, "Permutation multiplication", TestPermMul },
00019   { 504, "Permutation power", TestPermPwr },
00020   { 505, "Permutation inverse", TestPermInv },
00021 
00022 #endif