Skip to content

Commit 7c3bf66

Browse files
hugtalbotfredroy
authored andcommitted
continue SOFA_ATTRIBUTE_DISABLED in SparseCommon
1 parent 2030dd0 commit 7c3bf66

File tree

1 file changed

+0
-5
lines changed
  • Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct

1 file changed

+0
-5
lines changed

Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/SparseCommon.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@ SOFA_ATTRIBUTE_DEPRECATED__SPARSECOMMON()
4141
SOFA_COMPONENT_LINEARSOLVER_DIRECT_API
4242
void csrToAdj(int n, int * M_colptr, int * M_rowind, type::vector<int>& adj, type::vector<int>& xadj, type::vector<int>& t_adj, type::vector<int>& t_xadj, type::vector<int>& tran_countvec );
4343

44-
// compute the fill reducing permutation via METIS
45-
SOFA_ATTRIBUTE_DISABLED("v24.06", "v24.06", "This function depends on Metis which has been removed as a dependency.")
46-
void fillReducingPermutation(int nbColumns, int *columns, int* rowIndices,
47-
int * perm,int * invperm) = delete;
48-
4944
// compare the shape of two matrix given in CSR format, return false if the matrices have the same shape and return true if their shapes are different
5045
inline bool compareMatrixShape(int s_M, int * M_colptr,int * M_rowind, int s_P, int * P_colptr,int * P_rowind) {
5146
if (s_M != s_P) return true;

0 commit comments

Comments
 (0)