]> AND Private Git Repository - Cipher_code.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
aze
authorRaphaël Couturier <raphael.couturier@univ-fcomte.fr>
Tue, 25 Feb 2020 03:15:24 +0000 (04:15 +0100)
committerRaphaël Couturier <raphael.couturier@univ-fcomte.fr>
Tue, 25 Feb 2020 03:15:24 +0000 (04:15 +0100)
IDA_new/ida_gf65_paper3.cpp

index 74495b70b5f701a148a4c96c8faa35d2e40c2ce2..14cb94c731528a8f8d72e4fbfe37b91021b380eb 100644 (file)
@@ -61,7 +61,7 @@ void display(mylong *mat, int r, int c) {
 mylong *matrix_multiply(gf_t *gf, mylong *m1, mylong *m2, int r1, int c1, int r2, int c2, int w, float *toto)
 {
   mylong *product;
-  int i=iii, j, k;
+  int i, j, k;
 
   product = (mylong *) malloc(sizeof(mylong)*r1*c2);
   for (i = 0; i < r1*c2; i++) product[i] = 0;