You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tree.get_distance(target, target2, topology_only=True) should (according to the documentation) return the number of nodes connecting target and target2. It does not correctly do this, as shown in this example:
tree = Tree("((A,B), C);")
node2 = tree.get_common_ancestor("A", "B")
tree.get_distance(target, target2, topology_only=True)
should (according to the documentation) return the number of nodes connectingtarget
andtarget2
. It does not correctly do this, as shown in this example:Then:
The text was updated successfully, but these errors were encountered: