From: erg Date: Mon, 22 Jun 2009 18:25:45 +0000 (+0000) Subject: Put in stub remove_overlap for call from sfdp if GTS/TRIANGLE not defined. X-Git-Tag: LAST_LIBGRAPH~32^2~1901 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d69200a3dcf8557b54e78522c706f5f278fbb8c;p=graphviz Put in stub remove_overlap for call from sfdp if GTS/TRIANGLE not defined. --- diff --git a/lib/neatogen/overlap.c b/lib/neatogen/overlap.c index c0e6dc489..bfd64d044 100644 --- a/lib/neatogen/overlap.c +++ b/lib/neatogen/overlap.c @@ -513,4 +513,11 @@ void remove_overlap(int dim, SparseMatrix A, int m, real *x, real *label_sizes, #endif } +#else +#include "types.h" +#include "SparseMatrix.h" +void remove_overlap(int dim, SparseMatrix A, int m, real *x, real *label_sizes, int ntry, real initial_scaling, int *flag) +{ + agerr(AGERR, "remove_overlap: Graphviz not built with triangulation library\n"); +} #endif