From: erg Date: Fri, 25 Apr 2008 14:38:29 +0000 (+0000) Subject: Split use of Agnode_t out of vtx_data structure so that it can be used X-Git-Tag: LAST_LIBGRAPH~32^2~4207 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fffbb151eda31eecdaa76ca703822a9e40461b3c;p=graphviz Split use of Agnode_t out of vtx_data structure so that it can be used independently of all the main graphviz machinery. --- diff --git a/lib/neatogen/digcola.h b/lib/neatogen/digcola.h index 66786a4bc..e94544ff8 100644 --- a/lib/neatogen/digcola.h +++ b/lib/neatogen/digcola.h @@ -28,7 +28,7 @@ extern double compute_hierarchy(vtx_data*, int, double, double, double*, int**, int**, int*); extern void IMDS_given_dim(vtx_data*, int, double*, double*, double); extern int stress_majorization_with_hierarchy(vtx_data*, int, int, double**, - int, int, int, int, double); + node_t**, int, int, int, int, double); #ifdef IPSEPCOLA typedef struct ipsep_options { int diredges; /* 1=generate directed edge constraints */ @@ -47,7 +47,7 @@ typedef struct ipsep_options { } ipsep_options; /* stress majorization, for Constraint Layout */ -extern int stress_majorization_cola(vtx_data*, int, int, double**, int, int, int, ipsep_options*); +extern int stress_majorization_cola(vtx_data*, int, int, double**, node_t**, int, int, int, ipsep_options*); #endif #endif #endif