From 4a03c700d5391e3fa18f9d9b219936ef5c9eb722 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 28 Apr 2020 14:12:17 -0700 Subject: struct: tree node children now purely linked list instead of bespoke hybrid --- include/libbio.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/libbio.h') diff --git a/include/libbio.h b/include/libbio.h index 4b92587..261c732 100644 --- a/include/libbio.h +++ b/include/libbio.h @@ -12,9 +12,8 @@ typedef struct bio·Node int nchild; int ndescendent; struct bio·Node *parent; - // NOTE: Sibiling allows for polytomies - struct bio·Node *child[2]; struct bio·Node *sibling; + struct bio·Node *child; } bio·Node; typedef struct bio·Tree -- cgit v1.2.1