X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f5e8daaa6e9f74521068aa75837200bcd182ea6..dbacefe09d961d21ce12a7aa223b1177e9b3c323:/src/xbt/xbt_matrix.c diff --git a/src/xbt/xbt_matrix.c b/src/xbt/xbt_matrix.c index 4bdeb432d3..80e60d3ca0 100644 --- a/src/xbt/xbt_matrix.c +++ b/src/xbt/xbt_matrix.c @@ -108,7 +108,7 @@ void xbt_matrix_copy_values(xbt_matrix_t dst, xbt_matrix_t src, { unsigned int i, j; - DEBUG10 + XBT_DEBUG ("Copy a %dx%d submatrix from %dx%d(of %dx%d) to %dx%d (of %dx%d)", lsize, rsize, lpos_src, rpos_src, src->lines, src->rows, lpos_dst, rpos_dst, dst->lines, dst->rows); @@ -211,7 +211,7 @@ void xbt_matrix_double_addmult(xbt_matrix_t A, xbt_matrix_t B, { unsigned int i, j, k; - xbt_assert2(A->lines == C->lines, + xbt_assert(A->lines == C->lines, "A->lines != C->lines (%d vs %d)", A->lines, C->lines); xbt_assert(B->rows == C->rows);