From dcf04be444804663c383dadf9df9629399471af7 Mon Sep 17 00:00:00 2001 From: Christian C Date: Thu, 6 Mar 2025 16:23:42 -0800 Subject: Condition partially unused tree --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index 5e782ee..44255dc 100644 --- a/src/main.c +++ b/src/main.c @@ -158,19 +158,19 @@ int main(int argc, char** argv) printf("%u remaining labels found\n", starting_label-1); printf("Mask dimensions: %u %u\n", width, height); } +#ifdef AVL_INFO //----------------------------------------------- //-OPTIONAL:------------------------------------- //-GET-MASK-META-INFORMATION--------------------- //----------------------------------------------- root = get_mask_data(masks, width, height); -#ifdef AVL_INFO if (!silent) { printf("Inorder traversal of AVL tree: "); print_label(root); printf("\n"); } -#endif free_avl_tree_nodes(root); +#endif TIME(ts_start); //----------------------------------------------- -- cgit v1.2.1