]> granicus.if.org Git - graphviz/commitdiff
sfdpgen spring_electrical_embedding_slow: remove 'qt' that is always NULL
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 26 Nov 2022 17:34:30 +0000 (09:34 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 30 Nov 2022 01:04:39 +0000 (17:04 -0800)
lib/sfdpgen/spring_electrical.c

index aaed66787ae3b8e88399e9edc769c7ed588a67fe..80c6253599d3346b06c5a365aafc4ce7426ec3b4 100644 (file)
@@ -660,11 +660,10 @@ static void spring_electrical_embedding_slow(int dim, SparseMatrix A0, spring_el
   double *f = NULL, dist, F, Fnorm = 0, Fnorm0;
   int iter = 0;
   int adaptive_cooling = ctrl->adaptive_cooling;
-  QuadTree qt = NULL;
   double *force;
 #ifdef TIME
   clock_t start, end, start0, start2;
-  double qtree_cpu = 0, qtree_cpu0 = 0;
+  double qtree_cpu = 0;
   double total_cpu = 0;
   start0 = clock();
 #endif
@@ -775,17 +774,6 @@ static void spring_electrical_embedding_slow(int dim, SparseMatrix A0, spring_el
 
     }/* done vertex i */
 
-    if (qt) {
-      QuadTree_delete(qt);
-#ifdef TIME
-      qtree_cpu0 = qtree_cpu - qtree_cpu0;
-      if (Verbose && 0) fprintf(stderr, "\n cpu this outer iter = %f, quadtree time = %f other time = %f\n",((double) (clock() - start2)) / CLOCKS_PER_SEC, qtree_cpu0,((double) (clock() - start2))/CLOCKS_PER_SEC - qtree_cpu0);
-      qtree_cpu0 = qtree_cpu;
-#endif
-      if (Verbose && 0) fprintf(stderr, "nsuper_avg=0, counts_avg = 0 2*nsuper+counts=0\n");
-      oned_optimizer_train(qtree_level_optimizer, 0);
-    }
-
 #ifdef ENERGY
     if (Verbose) {
         fprintf(stderr, "\r                iter = %d, step = %f Fnorm = %f nsuper = 0 nz = %d  K = %f                                  ",iter, step, Fnorm,A->nz,K);