]> granicus.if.org Git - graphviz/commitdiff
sfdpgen: make 'UniformStressSmoother_new' a static function
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 15:34:37 +0000 (08:34 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 29 Jul 2022 00:54:05 +0000 (17:54 -0700)
This function is not used outside of its containing file.

lib/sfdpgen/uniform_stress.c
lib/sfdpgen/uniform_stress.h

index 3ef8b2131428d322221d0a1bcf258613e498d805..3777db9d029a4dbda832f74fd53305a43d220425 100644 (file)
@@ -26,7 +26,8 @@ This is somewhat similar to the binary stress model
 
 */
 
-UniformStressSmoother UniformStressSmoother_new(SparseMatrix A, double alpha, double M){
+static UniformStressSmoother UniformStressSmoother_new(SparseMatrix A,
+                                                       double alpha, double M) {
   UniformStressSmoother sm;
   int i, j, k, m = A->m, *ia = A->ia, *ja = A->ja, *iw, *jw, *id, *jd;
   int nz;
index 4600ed65c29c5b3c0d801795d1c2c3b9d8cdba04..658a539f179f0d80e7bb4d858ef6b4e2f652df40 100644 (file)
@@ -18,6 +18,4 @@ typedef StressMajorizationSmoother UniformStressSmoother;
 
 void UniformStressSmoother_delete(UniformStressSmoother sm);
 
-UniformStressSmoother UniformStressSmoother_new(SparseMatrix A, double alpha, double M);
-
 void uniform_stress(int dim, SparseMatrix A, double *x, int *flag);