From: yifanhu Date: Thu, 7 Feb 2008 18:23:15 +0000 (+0000) Subject: added a scan line algorithm to deal with cases where nodes have not clash over triang... X-Git-Tag: LAST_LIBGRAPH~32^2~4749 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2537daf3ff7b560d61b9a0babd6214e4e81974f0;p=graphviz added a scan line algorithm to deal with cases where nodes have not clash over triangulation, but clashes with non-neighboring nodes --- diff --git a/lib/sfdpgen/overlap.h b/lib/sfdpgen/overlap.h index 61ab824d6..12c8181c6 100644 --- a/lib/sfdpgen/overlap.h +++ b/lib/sfdpgen/overlap.h @@ -5,7 +5,7 @@ typedef StressMajorizationSmoother OverlapSmoother; void OverlapSmoother_delete(OverlapSmoother sm); -OverlapSmoother OverlapSmoother_new(SparseMatrix A, int dim, real lambda0, real *x, real *width, int include_original_graph, +OverlapSmoother OverlapSmoother_new(SparseMatrix A, int dim, real lambda0, real *x, real *width, int include_original_graph, int neighborhood_only, real *max_overlap); void OverlapSmoother_smooth(OverlapSmoother sm, int dim, real *x);