]> granicus.if.org Git - graphviz/commitdiff
neatogen: [nfc] remove some unnecessary parens
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 15 Feb 2022 07:46:12 +0000 (18:46 +1100)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 16 Feb 2022 10:03:39 +0000 (21:03 +1100)
lib/neatogen/constrained_majorization.c
lib/neatogen/constrained_majorization_ipsep.c
lib/neatogen/matrix_ops.c
lib/neatogen/stress.c

index 12e0e8549851220584949c1f6e1b4a5612b4a522..7d6b49a676292cf518e107de63926eceab285ea9 100644 (file)
@@ -273,7 +273,7 @@ int stress_majorization_with_hierarchy(vtx_data * graph,    /* Input graph in spars
     for (i = 0; i < dim; i++) {
        coords[i] = f_storage + i * n;
        for (j = 0; j < n; j++) {
-           coords[i][j] = (float) (d_coords[i][j]);
+           coords[i][j] = (float)d_coords[i][j];
        }
     }
 
index d52e9af6a5126b26a4428ef9c00e41fb6a7bcc25..988099d70c3951952ecf1d80fe28f2b0316ae8cc 100644 (file)
@@ -252,7 +252,7 @@ int stress_majorization_cola(vtx_data * graph,      /* Input graph in sparse represen
     for (i = 0; i < dim; i++) {
        coords[i] = f_storage + i * n;
        for (j = 0; j < n; j++) {
-           coords[i][j] = j < orig_n ? (float) (d_coords[i][j]) : 0;
+           coords[i][j] = j < orig_n ? (float)d_coords[i][j] : 0;
        }
     }
 
index 633f2c0d8f69ebfab9a82708290300d08f5e17e8..2cb9314d4ae52b417719e643824083118b89ea79 100644 (file)
@@ -306,7 +306,7 @@ void vecscale(double *vec1, int beg, int end, double alpha, double *vec2)
 /* Returns 2-norm of a double n-vector over range. */
 double norm(double *vec, int beg, int end)
 {
-    return (sqrt(dot(vec, beg, end, vec)));
+    return sqrt(dot(vec, beg, end, vec));
 }
 
 void orthog1(int n, double *vec        /* vector to be orthogonalized against 1 */
index 24bf9f096fc5614bb974fe1a1986bf3b187195f8..8b9ee8505d5f9dd4c18bb75692bc1410215e349d 100644 (file)
@@ -63,14 +63,14 @@ static double compute_stressf(float **coords, float *lap, int dim, int n, int ex
            if (exp == 2) {
 #ifdef Dij2
                Dij = 1.0 / sqrt(lap[count]);
-               sum += (Dij - dist) * (Dij - dist) * (lap[count]);
+               sum += (Dij - dist) * (Dij - dist) * lap[count];
 #else
                Dij = 1.0 / lap[count];
-               sum += (Dij - dist) * (Dij - dist) * (lap[count]);
+               sum += (Dij - dist) * (Dij - dist) * lap[count];
 #endif
            } else {
                Dij = 1.0 / lap[count];
-               sum += (Dij - dist) * (Dij - dist) * (lap[count]);
+               sum += (Dij - dist) * (Dij - dist) * lap[count];
            }
        }
     }
@@ -579,7 +579,7 @@ static int sparse_stress_subspace_majorization_kD(vtx_data * graph, /* Input gra
        /* random initialization */
        for (k = 0; k < dim; k++) {
            for (i = 0; i < subspace_dim; i++) {
-               directions[k][i] = (double) (rand()) / RAND_MAX;
+               directions[k][i] = (double) rand() / RAND_MAX;
            }
        }
     }
@@ -764,7 +764,7 @@ float *compute_apsp_packed(vtx_data * graph, int n)
     for (i = 0; i < n; i++) {
        bfs(i, graph, n, Di, &Q);
        for (j = i; j < n; j++) {
-           Dij[count++] = ((float) Di[j]);
+           Dij[count++] = (float)Di[j];
        }
     }
     free(Di);
@@ -954,14 +954,14 @@ int stress_majorization_kD_mkernel(vtx_data * graph,      /* Input graph in sparse re
        ** Layout initialization **
        **************************/
 
-    if (smart_ini && (n > 1)) {
+    if (smart_ini && n > 1) {
        havePinned = 0;
        /* optimize layout quickly within subspace */
        /* perform at most 50 iterations within 30-D subspace to 
           get an estimate */
        if (sparse_stress_subspace_majorization_kD(graph, n, nedges_graph,
                                               d_coords, dim, smart_ini, exp,
-                                              (model == MODEL_SUBSET), 50,
+                                              model == MODEL_SUBSET, 50,
                                               neighborhood_radius_subspace,
                                               num_pivots_stress) < 0) {
            iterations = -1;
@@ -990,7 +990,7 @@ int stress_majorization_kD_mkernel(vtx_data * graph,        /* Input graph in sparse re
     }
     if (Verbose)
        fprintf(stderr, ": %.2f sec", elapsed_sec());
-    if ((n == 1) || (maxi == 0))
+    if (n == 1 || maxi == 0)
        return 0;
 
     if (Verbose) {
@@ -1003,7 +1003,7 @@ int stress_majorization_kD_mkernel(vtx_data * graph,      /* Input graph in sparse re
     for (i = 0; i < dim; i++) {
        coords[i] = f_storage + i * n;
        for (j = 0; j < n; j++) {
-           coords[i][j] = ((float) d_coords[i][j]);
+           coords[i][j] = (float)d_coords[i][j];
        }
     }
 
@@ -1011,7 +1011,7 @@ int stress_majorization_kD_mkernel(vtx_data * graph,      /* Input graph in sparse re
     /* which is \sum_{i<j} w_{ij}d_{ij}^2 */
     if (exp) {
 #ifdef Dij2
-       constant_term = ((float) n * (n - 1) / 2);
+       constant_term = (float)n * (n - 1) / 2;
 #else
        constant_term = 0;
        for (count = 0, i = 0; i < n - 1; i++) {
@@ -1205,7 +1205,7 @@ int stress_majorization_kD_mkernel(vtx_data * graph,      /* Input graph in sparse re
                }
            }
        }
-       if (Verbose && (iterations % 5 == 0)) {
+       if (Verbose && iterations % 5 == 0) {
            fprintf(stderr, "%.3f ", new_stress);
            if ((iterations + 5) % 50 == 0)
                fprintf(stderr, "\n");