]> granicus.if.org Git - graphviz/commitdiff
Add hierarchical constraints. This is enabled only if the compile-time
authorerg <devnull@localhost>
Wed, 13 Jul 2005 20:29:40 +0000 (20:29 +0000)
committererg <devnull@localhost>
Wed, 13 Jul 2005 20:29:40 +0000 (20:29 +0000)
variable DIGCOLA is defined. At present, by default this is undefined.

lib/neatogen/kkutils.h

index aa87fb380460fd33945b455d6b3dd08c732c0339..d3694b80f48327f30f21e51c1ce4bd9901ae127c 100644 (file)
@@ -40,8 +40,7 @@ extern "C" {
     void compute_apsp_artifical_weights(vtx_data * graph, int n,
                                        DistType ** (&Dij));
 
-    void quicksort_place(double *place, int *ordering, int first,
-                        int last);
+    void quicksort_place(double *place, int *ordering, int first, int last);
     void free_graph(vtx_data * (&graph));
 #else
     extern void fill_neighbors_vec_unweighted(vtx_data *, int vtx,
@@ -53,6 +52,7 @@ extern "C" {
     extern DistType **compute_apsp_artifical_weights(vtx_data *, int);
     extern double distance_kD(double **, int, int, int);
     extern void quicksort_place(double *, int *, int, int);
+    extern void quicksort_placef(float *, int *, int, int);
     extern void compute_new_weights(vtx_data * graph, int n);
     extern void restore_old_weights(vtx_data * graph, int n,
                                    float *old_weights);