From 2a953cc29ea0d9caf18f5c26bd951a75007fd7f4 Mon Sep 17 00:00:00 2001 From: Sarah Lutteropp Date: Sat, 4 Jul 2020 13:46:09 +0200 Subject: [PATCH] Revert "fixed species roots atrandomly resolvd multifurcations, but only fixed for --ml so far" This reverts commit b831c9c8dee01b412c79a4edef67f08ba525cf1d. --- src/dp.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/dp.c b/src/dp.c index 8c44b96..b59c95a 100644 --- a/src/dp.c +++ b/src/dp.c @@ -79,10 +79,6 @@ static void dp_recurse(rtree_t * node, long method) /* if at least one of the two entries is not valid/filled, skip */ if (!v_vec[j].filled || !w_vec[k].filled) continue; - /* Fix species roots at randomlyresolved multifurcations */ - if (node->left->length == 0 && node->left->left && v_vec[j].species_count == 1) continue; - if (node->right->length == 0 && node->right->left && w_vec[k].species_count == 1) continue; - int i = j + k + u_edge_count; /* set the number of species */