Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Switch to xbt_matrix_t
[simgrid.git] / examples / gras / mmrpc / mmrpc.h
index d33d1c8..781d05a 100644 (file)
 
 #define MATSIZE 128
 
-GRAS_DEFINE_TYPE(s_matrix,
-struct s_matrix {
-  int lines;
-  int rows;
-  double *ctn GRAS_ANNOTE(size, lines*rows);
-};)
-typedef struct s_matrix matrix_t;
-
-void mat_dump(matrix_t *mat, const char* name);
-
 /* register messages which may be sent and their payload
    (common to client and server) */
 void mmrpc_register_messages(void);