#include "bary.h"
#include "bary_macros.h"
Include dependency graph for clean.c:
Go to the source code of this file.
Defines | |
#define | STATIC |
Functions | |
STATIC int | compare_pos (const GNODE *a, const GNODE *b) |
STATIC void | checkcrossing (int j) |
Variables | |
STATIC int | phase2_startlevel = 0 |
int | maxdepth |
int | G_timelimit |
|
|
|
Definition at line 14 of file clean.c. References calc_all_layers_crossings(), graph_crossings(), nr_crossings, and STATIC.
00015 { 00016 calc_all_layers_crossings(); 00017 assert((j==graph_crossings())); 00018 printf("Phase2_down: nr_crossings old: %d new: %d\n",nr_crossings,j); 00019 } |
|
Definition at line 12 of file clean.c. Referenced by predmedian(), and succmedian().
00012 { if (((*a)->position) > ((*b)->position)) return (1); if (((*a)->position) < ((*b)->position)) return (-1); return (0);} |
|
|
|
|
|
|