M4RI  1.0.1
solve.h
Go to the documentation of this file.
1 
10 #ifndef M4RI_SOLVE_H
11 #define M4RI_SOLVE_H
12 
13  /*******************************************************************
14  *
15  * M4RI: Linear Algebra over GF(2)
16  *
17  * Copyright (C) 2008 Jean-Guillaume.Dumas@imag.fr
18  *
19  * Distributed under the terms of the GNU General Public License (GPL)
20  *
21  * This code is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24  * General Public License for more details.
25  *
26  * The full text of the GPL is available at:
27  *
28  * http://www.gnu.org/licenses/
29  *
30  ********************************************************************/
31 
32 #include "mzp.h"
33 #include "mzd.h"
34 
48 int mzd_solve_left(mzd_t *A, mzd_t *B, int const cutoff, int const inconsistency_check);
49 
74 int mzd_pluq_solve_left (mzd_t const *A, rci_t rank,
75  mzp_t const *P, mzp_t const *Q,
76  mzd_t *B, int const cutoff, int const inconsistency_check);
77 
102 int _mzd_pluq_solve_left(mzd_t const *A, rci_t rank,
103  mzp_t const *P, mzp_t const *Q,
104  mzd_t *B, int const cutoff, int const inconsistency_check);
105 
123 int _mzd_solve_left(mzd_t *A, mzd_t *B, int const cutoff, int const inconsistency_check);
124 
142 mzd_t *mzd_kernel_left_pluq(mzd_t *A, int const cutoff);
143 
144 #endif // M4RI_SOLVE_H