Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f36d98a9 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Move to const the Descriptor in desc_check

parent 812732a2
No related branches found
No related tags found
1 merge request!78Cleanup - Lapack to tile
...@@ -258,7 +258,7 @@ MORSE_desc_t* morse_desc_submatrix(MORSE_desc_t *descA, int i, int j, int m, int ...@@ -258,7 +258,7 @@ MORSE_desc_t* morse_desc_submatrix(MORSE_desc_t *descA, int i, int j, int m, int
/******************************************************************************* /*******************************************************************************
* Check for descriptor correctness * Check for descriptor correctness
**/ **/
int morse_desc_check(MORSE_desc_t *desc) int morse_desc_check(const MORSE_desc_t *desc)
{ {
if (desc == NULL) { if (desc == NULL) {
morse_error("morse_desc_check", "NULL descriptor"); morse_error("morse_desc_check", "NULL descriptor");
......
...@@ -63,7 +63,7 @@ MORSE_desc_t morse_desc_init_user(MORSE_enum dtyp, int mb, int nb, int bsiz, ...@@ -63,7 +63,7 @@ MORSE_desc_t morse_desc_init_user(MORSE_enum dtyp, int mb, int nb, int bsiz,
int (*get_rankof)( const MORSE_desc_t*, int, int )); int (*get_rankof)( const MORSE_desc_t*, int, int ));
MORSE_desc_t* morse_desc_submatrix(MORSE_desc_t *descA, int i, int j, int m, int n); MORSE_desc_t* morse_desc_submatrix(MORSE_desc_t *descA, int i, int j, int m, int n);
int morse_desc_check (MORSE_desc_t *desc); int morse_desc_check (const MORSE_desc_t *desc);
int morse_desc_mat_alloc(MORSE_desc_t *desc); int morse_desc_mat_alloc(MORSE_desc_t *desc);
int morse_desc_mat_free (MORSE_desc_t *desc); int morse_desc_mat_free (MORSE_desc_t *desc);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment