Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
stupid me. col means row in french, so use line/row and not row/col, which means...
[simgrid.git] / examples / gras / mmrpc / mmrpc.h
index 4e5e1e6..d33d1c8 100644 (file)
@@ -16,9 +16,9 @@
 
 GRAS_DEFINE_TYPE(s_matrix,
 struct s_matrix {
+  int lines;
   int rows;
-  int cols;
-  double *ctn GRAS_ANNOTE(size, rows*cols);
+  double *ctn GRAS_ANNOTE(size, lines*rows);
 };)
 typedef struct s_matrix matrix_t;