Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
spm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
spm
Commits
78fbe027
Commit
78fbe027
authored
6 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Add missing declaration and fix indentation in some places
parent
41a9cf55
No related branches found
No related tags found
1 merge request
!5
Hotfix/updates from pastix
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/spm.h
+2
-0
2 additions, 0 deletions
include/spm.h
src/common.h
+0
-1
0 additions, 1 deletion
src/common.h
src/spm_integers.c
+0
-3
0 additions, 3 deletions
src/spm_integers.c
src/z_spm.h
+3
-3
3 additions, 3 deletions
src/z_spm.h
with
5 additions
and
7 deletions
include/spm.h
+
2
−
0
View file @
78fbe027
...
...
@@ -132,6 +132,8 @@ void spmIntSort1Asc1( void * const pbase, const spm_int_t n );
void
spmIntSort2Asc1
(
void
*
const
pbase
,
const
spm_int_t
n
);
void
spmIntSort2Asc2
(
void
*
const
pbase
,
const
spm_int_t
n
);
void
spmIntMSortIntAsc
(
void
**
const
pbase
,
const
spm_int_t
n
);
/**
* @}
* @name SPM IO subroutines
...
...
This diff is collapsed.
Click to expand it.
src/common.h
+
0
−
1
View file @
78fbe027
...
...
@@ -111,6 +111,5 @@ spm_cleanenv( char *str ) {
#endif
#endif
/* _spm_common_h_ */
This diff is collapsed.
Click to expand it.
src/spm_integers.c
+
0
−
3
View file @
78fbe027
...
...
@@ -238,9 +238,6 @@ void spmIntSort3Asc1(void *const pbase, const spm_int_t n);
*
*******************************************************************************
*/
/* Declare here for now, because unused */
void
spmIntMSortIntAsc
(
void
**
const
pbase
,
const
spm_int_t
n
);
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#define INTSORTNAME spmIntMSortIntAsc
#define INTSORTSIZE(x) (sizeof (spm_int_t))
...
...
This diff is collapsed.
Click to expand it.
src/z_spm.h
+
3
−
3
View file @
78fbe027
...
...
@@ -52,7 +52,7 @@ double z_spmNorm( int ntype, const spmatrix_t *spm );
/**
* Extra routines
*/
void
z_spmSort
(
spmatrix_t
*
spm
);
void
z_spmSort
(
spmatrix_t
*
spm
);
spm_int_t
z_spmMergeDuplicate
(
spmatrix_t
*
spm
);
spm_int_t
z_spmSymmetrize
(
spmatrix_t
*
spm
);
...
...
@@ -66,8 +66,8 @@ void z_spmDensePrint( FILE *f, spm_int_t m, spm_int_t n, const spm_complex64_t *
void
z_spmPrint
(
FILE
*
f
,
const
spmatrix_t
*
spm
);
spmatrix_t
*
z_spmExpand
(
const
spmatrix_t
*
spm
);
void
z_spmDofExtend
(
spmatrix_t
*
spm
);
void
z_spmScal
(
const
double
alpha
,
spmatrix_t
*
spm
);
void
z_spmDofExtend
(
spmatrix_t
*
spm
);
void
z_spmScal
(
const
double
alpha
,
spmatrix_t
*
spm
);
#endif
/* _z_spm_h_ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment