#include "t-add_sub_n.c"
#include "t-addmul_submul.c"
#include "t-complex_mat_mul.c"
#include "t-mat_mul.c"
#include "t-nfixed_dot.c"
#include "t-nfixed_mat_mul.c"
#include "t-nfixed_mat_mul_classical.c"
#include "t-nfixed_mat_mul_strassen.c"
#include "t-nfixed_mat_mul_waksman.c"
#include "t-nfloat.c"
#include "t-nfloat_complex.c"
#include "t-nfloat_directed.c"
test_struct tests[] =
{
TEST_FUNCTION(add_sub_n),
TEST_FUNCTION(addmul_submul),
TEST_FUNCTION(complex_mat_mul),
TEST_FUNCTION(mat_mul),
TEST_FUNCTION(nfixed_dot),
TEST_FUNCTION(nfixed_mat_mul),
TEST_FUNCTION(nfixed_mat_mul_classical),
TEST_FUNCTION(nfixed_mat_mul_strassen),
TEST_FUNCTION(nfixed_mat_mul_waksman),
TEST_FUNCTION(nfloat),
TEST_FUNCTION(nfloat_complex),
TEST_FUNCTION(nfloat_directed),
};
TEST_MAIN(tests)