From 4e49ebe4c4c88ae58b4d038f8025a10c5f659774 Mon Sep 17 00:00:00 2001 From: erg Date: Tue, 8 Mar 2005 23:39:15 +0000 Subject: [PATCH] Ifdef out debug code --- lib/dotgen/mincross.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/dotgen/mincross.c b/lib/dotgen/mincross.c index 621412563..b4e43232e 100644 --- a/lib/dotgen/mincross.c +++ b/lib/dotgen/mincross.c @@ -67,6 +67,7 @@ static edge_t **TE_list; static int *TI_list; static boolean ReMincross; +#ifdef DEBUG static void dumpRanks (graph_t * g) { @@ -83,6 +84,7 @@ dumpRanks (graph_t * g) fprintf (stderr, "\n"); } } +#endif void dot_mincross(graph_t * g) { @@ -118,7 +120,10 @@ void dot_mincross(graph_t * g) #endif } cleanup2(g, nc); + +#ifdef DEBUG dumpRanks (g); +#endif } static adjmatrix_t *new_matrix(int i, int j) -- 2.40.0