forked from richfitz/diversitree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
23 lines (19 loc) · 861 Bytes
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
For the root treatments with stationary distributions for functions
that modify parameter vectors (currently only classe) be careful that
the stationary distribution is correct. This is not the case right
now for classe.
ROOT.EQUI check is not being done for t/td/split models as the
rootfunc hides it. Need to address this.
bd.split is really ugly.
The entire history bit (as with most of the plotting) is a bit of a
gong show.
Non ultrametric tree support should be included. If the info list
includes a "non-ultrametric-ok" element (or just look at idx.e) we
could generate a function that only looks at 'len', not at t0, so that
rather than doing
branches <- function(y, len, pars, t0, idx)
ode(y, c(t0, t0+len), pars)
we do
branches <- function(y, len, pars, t0, idx)
ode(y, c(0, len), pars)
This would break time-dependent mk2 though.