getfem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Getfem-commits] [getfem-commits] branch master updated: Deleting the ob


From: Yves Renard
Subject: [Getfem-commits] [getfem-commits] branch master updated: Deleting the obsolete class
Date: Fri, 10 Dec 2021 10:22:51 -0500

This is an automated email from the git hooks/post-receive script.

renard pushed a commit to branch master
in repository getfem.

The following commit(s) were added to refs/heads/master by this push:
     new 39dc301  Deleting the obsolete class
39dc301 is described below

commit 39dc301e4328a63be0d253e91ecc391e47fbfa10
Author: Yves Renard <Yves.Renard@insa-lyon.fr>
AuthorDate: Fri Dec 10 16:13:39 2021 +0100

    Deleting the obsolete class
---
 interface/src/matlab/gfm_common.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/interface/src/matlab/gfm_common.c 
b/interface/src/matlab/gfm_common.c
index 8ac129c..d1581c6 100644
--- a/interface/src/matlab/gfm_common.c
+++ b/interface/src/matlab/gfm_common.c
@@ -42,7 +42,7 @@ mxClassID2string(mxClassID id) {
     case mxUINT32_CLASS:  return "UINT32";
     case mxINT64_CLASS:   return "INT64";
     case mxUINT64_CLASS:  return "UINT64";
-    case mxSPARSE_CLASS:  return "SPARSE";
+      // case mxSPARSE_CLASS:  return "SPARSE"; // Deprecated
 #ifdef LOGICAL_IS_A_TYPE
     case mxLOGICAL_CLASS: return "LOGICAL";
 #endif
@@ -104,7 +104,7 @@ mxarray_to_gfi_array(const mxArray *mx, gfi_array *t)
       t->storage.gfi_storage_u.data_uint32.data_uint32_len = n;
       t->storage.gfi_storage_u.data_uint32.data_uint32_val = mxGetData(mx);
     } break;
-    case mxSPARSE_CLASS: /* for older (i.e. 6.1) matlab versions... */
+      // case mxSPARSE_CLASS: /* for older (i.e. 6.1) matlab versions. 
deprecated*/
     case mxDOUBLE_CLASS: {
       int is_complex = mxIsComplex(mx);
       



reply via email to

[Prev in Thread] Current Thread [Next in Thread]