M4RI 1.0.1
|
00001 00008 /****************************************************************************** 00009 * 00010 * M4RI: Linear Algebra over GF(2) 00011 * 00012 * Copyright (C) 2007 Gregory Bard <gregory.bard@ieee.org> 00013 * Copyright (C) 2007,2008 Martin Albrecht <malb@informatik.uni-bremen.de> 00014 * 00015 * Distributed under the terms of the GNU General Public License (GPL) 00016 * version 2 or higher. 00017 * 00018 * This code is distributed in the hope that it will be useful, 00019 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00021 * General Public License for more details. 00022 * 00023 * The full text of the GPL is available at: 00024 * 00025 * http://www.gnu.org/licenses/ 00026 ******************************************************************************/ 00027 #ifndef M4RI_H 00028 #define M4RI_H 00029 00041 #include <stdio.h> 00042 #include <stdlib.h> 00043 #include <math.h> 00044 00045 #ifdef __cplusplus 00046 extern "C" { 00047 #endif //__cplusplus 00048 00049 #include "permutation.h" 00050 #include "packedmatrix.h" 00051 #include "brilliantrussian.h" 00052 #include "strassen.h" 00053 #include "grayflex.h" 00054 #include "parity.h" 00055 #include "trsm.h" 00056 #include "pls.h" 00057 #include "pls_mmpf.h" 00058 #include "solve.h" 00059 #include "echelonform.h" 00060 00061 #ifdef __cplusplus 00062 } 00063 #endif //__cplusplus 00064 00065 #endif //M4RI_H